regrid_parcel_by_point
Pack: regrid · Endpoint: https://gateway.pipeworx.io/regrid/mcp
Find parcels at a lat/lon point — returns the parcel(s) whose boundary contains or sits near the coordinate, with owner, zoning, land use, acreage, and boundary. Example: regrid_parcel_by_point({ lat: 38.8977, lon: -77.0365, _apiKey: “your-token” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
lat | number | yes | Latitude of the point, e.g. 38.8977 |
lon | number | yes | Longitude of the point, e.g. -77.0365 |
radius | number | no | Optional search radius in meters around the point |
_apiKey | string | yes | Regrid API token (get one free at regrid.com — 30-day sandbox) |
Example call
Arguments
{
"lat": 38.8977,
"lon": -77.0365,
"_apiKey": "your-regrid-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/regrid/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"regrid_parcel_by_point","arguments":{"lat":38.8977,"lon":-77.0365,"_apiKey":"your-regrid-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('regrid_parcel_by_point', {
"lat": 38.8977,
"lon": -77.0365,
"_apiKey": "your-regrid-api-key"
});
More examples
{
"lat": 40.758,
"lon": -73.9855,
"radius": 500,
"_apiKey": "your-regrid-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"regrid": {
"url": "https://gateway.pipeworx.io/regrid/mcp"
}
}
}
See Getting Started for client-specific install steps.