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

NameTypeRequiredDescription
querystringnoFree-text location/search query, e.g. “Phoenix, AZ” or “85001”.
searchCriteriaobjectnoOptional: full searchCriteria object for advanced filters (combined with AND). If omitted, query is wrapped as { query }.
skipnumbernoPagination offset — number of results to skip (default 0).
takenumbernoNumber of results per page (default 25, max 1000; keep <=500 to avoid 502s).
_apiKeystringyesBatchData API token (create one at https://app.batchdata.com)

Example call

Arguments

{
  "query": "Phoenix, AZ",
  "take": 25,
  "_apiKey": "your-batchdata-api-key"
}

curl

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":{"query":"Phoenix, AZ","take":25,"_apiKey":"your-batchdata-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('batchdata_property_search', {
  "query": "Phoenix, AZ",
  "take": 25,
  "_apiKey": "your-batchdata-api-key"
});

More examples

{
  "query": "85001",
  "skip": 50,
  "take": 100,
  "_apiKey": "your-batchdata-api-key"
}

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.

Regenerated from source · build August 29, 2026