MCP server exposing 3 tools for batchdata.
This URL is a JSON-RPC 2.0 endpoint over HTTP. Issue POST requests with a JSON-RPC body. Browsers and search crawlers land here on GET.
POST https://gateway.pipeworx.io/batchdata/mcp
Content-Type: application/json
{"jsonrpc":"2.0","id":1,"method":"tools/list"}
batchdata_property_lookup — Look up full property attributes (owner, building characteristics, valuation, sale/tax history) for one or more known addresses. Requires a BatchData API token via _apiKey. Example: batchdata_property_lookup({ street: "1011 Rosegold St", city: "Franklin Square", state: "NY", zip: "11010", _apiKey: "your-token" })batchdata_property_search — 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" })batchdata_skip_trace — Skip-trace an address (optionally with an owner name) to resolve owner contact info — phone numbers and emails. WARNING: skip-trace results carry DPPA/GLBA permissible-use obligations; the caller is solely responsible for lawful use of the returned contact data. Requires a BatchData API token via _apiKey. Example: batchdata_skip_trace({ street: "1011 Rosegold St", city: "Franklin Square", state: "NY", zip: "11010", _apiKey: "your-token" })Code samples (curl / TypeScript / one-click client install), schemas, and the live playground are on the pack page:
https://pipeworx.io/packs/batchdata/
Pipeworx is an open MCP gateway connecting AI agents to live data. pipeworx.io