batchdata_skip_trace
Pack: batchdata · Endpoint: https://gateway.pipeworx.io/batchdata/mcp
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” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
first | string | no | Optional owner first name to improve match accuracy. |
last | string | no | Optional owner last name to improve match accuracy. |
requests | array | no | Optional: batch of skip-trace requests. Each item is { propertyAddress: { street, city, state, zip }, name?: { first, last } }. If omitted, the top-level fields 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
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_skip_trace","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.