API access
Your AI client reaches Private Property Database through one ParcelOps MCP endpoint, so there is no separate key to hold for it and no per-source client to write. Reaching it takes your own credentials (connection_string).
Where it came from
Freshness and coverage
What this source cannot tell you
- ⚠ Where it stops geographically, because the covered area is not declared. An empty answer will not tell you whether the place is out of range or the record is simply missing.
- ⚠ Which years it spans, because the covered period is not declared.
- ⚠ How current a field is, because the refresh schedule is not declared.
- ⚠ Anything Private Property Database does not publish. ParcelOps returns this source as it stands and never fills a blank field from a different one.
Methods (4)
A method is one call your agent can make against this source.
query
readExecute a read-only SQL query in a READ ONLY transaction.
What you must providesqlInput schema
{ "type": "object", "properties": { "sql": { "type": "string" }, "params": { "type": "array" } }, "required": [ "sql" ], "additionalProperties": false }listTables
readList available tables in a schema.
Input schema
{ "type": "object", "properties": { "schema": { "type": "string" } }, "required": [], "additionalProperties": false }describeTable
readDescribe columns and keys for one table.
What you must providetableInput schema
{ "type": "object", "properties": { "table": { "type": "string" }, "schema": { "type": "string" } }, "required": [ "table" ], "additionalProperties": false }listSchemas
readList non-system schemas.
Input schema
{ "type": "object", "properties": {}, "required": [], "additionalProperties": false }
