Skip to content
HOA Power Tools

Board Meeting Minutes Builder

Turn meeting notes into a clear draft your board can review, with the gaps marked.

Using this tool from an agent

The same operations this page runs, over HTTP or MCP. Schemas are the ones the server enforces, so what is written here is what will actually be accepted.

Operations

OperationEngineCost
board_minutes.generate
MCP tool name: board_minutes_generate
aiAPI key
Needs an API key. Spends 1 AI credit from the key owner's monthly allowance.

Calling it

curl -X POST https://tools.rodri.ai/api/agent/tools/board_minutes/runs \
  -H "Authorization: Bearer hpt_live_…" \
  -H "Content-Type: application/json" \
  -d '{"operation": "board_minutes.generate", "input": { … }}'
Input schema: board_minutes.generate
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "sourceSetId": {
      "type": "string",
      "format": "uuid",
      "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"
    },
    "sourceSetVersion": {
      "default": 1,
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 9007199254740991
    },
    "communityName": {
      "type": "string",
      "maxLength": 120
    },
    "meetingType": {
      "default": "board",
      "type": "string",
      "enum": [
        "board",
        "annual",
        "special",
        "committee",
        "other"
      ]
    },
    "meetingDate": {
      "type": "string",
      "maxLength": 40
    },
    "location": {
      "type": "string",
      "maxLength": 160
    },
    "previousMinutesTemplate": {
      "type": "string",
      "maxLength": 20000
    },
    "locale": {
      "default": "en",
      "type": "string",
      "enum": [
        "en",
        "es"
      ]
    }
  },
  "required": [
    "sourceSetId"
  ]
}