batchdata_property_lookup
Pack: batchdata · Endpoint: https://gateway.pipeworx.io/batchdata/mcp
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” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
requests | array | no | Optional: batch of address requests. Each item is { propertyAddress: { street, city, state, zip } }. If omitted, the top-level street/city/state/zip are used as a single request. |
propertyAddress | unknown | no | |
items | object | no | |
_apiKey | string | yes | BatchData API token (create one at https://app.batchdata.com) |
Example call
Arguments
{
"street": "1011 Rosegold St",
"city": "Franklin Square",
"state": "NY",
"zip": "11010",
"_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_lookup","arguments":{"street":"1011 Rosegold St","city":"Franklin Square","state":"NY","zip":"11010","_apiKey":"your-batchdata-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('batchdata_property_lookup', {
"street": "1011 Rosegold St",
"city": "Franklin Square",
"state": "NY",
"zip": "11010",
"_apiKey": "your-batchdata-api-key"
});
More examples
{
"requests": [
{
"propertyAddress": {
"street": "123 Main St",
"city": "Phoenix",
"state": "AZ",
"zip": "85001"
}
},
{
"propertyAddress": {
"street": "456 Oak Ave",
"city": "Scottsdale",
"state": "AZ",
"zip": "85251"
}
}
],
"_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.