batchdata_property_search
Pack: batchdata · Endpoint: https://gateway.pipeworx.io/batchdata/mcp
Search BatchData’s 155M+ property database by location and attribute filters (e.g. “Phoenix, AZ”), with skip/take pagination. Returns matching property records plus a meta count of total matches. Requires a BatchData API token via _apiKey. Example: batchdata_property_search({ query: “Phoenix, AZ”, take: 25, _apiKey: “your-token” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Free-text location/search query, e.g. “Phoenix, AZ” or “85001”. |
searchCriteria | object | no | Optional: full searchCriteria object for advanced filters (combined with AND). If omitted, query is wrapped as { query }. |
skip | number | no | Pagination offset — number of results to skip (default 0). |
take | number | no | Number of results per page (default 25, max 1000; keep <=500 to avoid 502s). |
_apiKey | string | yes | BatchData API token (create one at https://app.batchdata.com) |
Example call
curl -X POST https://gateway.pipeworx.io/batchdata/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"batchdata_property_search","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"batchdata": {
"url": "https://gateway.pipeworx.io/batchdata/mcp"
}
}
}
See Getting Started for client-specific install steps.