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

NameTypeRequiredDescription
latnumberyesLatitude of the point, e.g. 38.8977
lonnumberyesLongitude of the point, e.g. -77.0365
radiusnumbernoOptional search radius in meters around the point
_apiKeystringyesRegrid 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.

Regenerated from source · build August 15, 2026