Skip to content
HOA Power Tools

Vendor Bid Comparison

See what each quote includes, what it leaves out, and what you still need to ask.

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
vendor_bids.compare
MCP tool name: vendor_bids_compare
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/vendor_bids/runs \
  -H "Authorization: Bearer hpt_live_…" \
  -H "Content-Type: application/json" \
  -d '{"operation": "vendor_bids.compare", "input": { … }}'
Input schema: vendor_bids.compare
{
  "$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
    },
    "workDescription": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "vendorLabels": {
      "minItems": 2,
      "maxItems": 4,
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 80
      }
    },
    "comparisonBasis": {
      "default": "one_time",
      "type": "string",
      "enum": [
        "one_time",
        "recurring"
      ]
    },
    "horizonMonths": {
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 120
    },
    "monthlyPeriods": {
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 120
    },
    "weeklyPeriods": {
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 520
    },
    "visitCount": {
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 520
    },
    "requiredScope": {
      "maxItems": 30,
      "type": "array",
      "items": {
        "type": "string",
        "maxLength": 120
      }
    },
    "locale": {
      "default": "en",
      "type": "string",
      "enum": [
        "en",
        "es"
      ]
    }
  },
  "required": [
    "sourceSetId",
    "workDescription",
    "vendorLabels"
  ]
}