regrid_parcel_by_address

Pack: regrid · Endpoint: https://gateway.pipeworx.io/regrid/mcp

Look up the parcel — owner, zoning, land use, boundaries — for an address. Searches Regrid’s nationwide US/CA parcel database by full address string and returns parcel number, owner, mailing address, land use, zoning, acreage, and location. Example: regrid_parcel_by_address({ query: “1600 Pennsylvania Ave NW, Washington, DC”, _apiKey: “your-token” })

Parameters

NameTypeRequiredDescription
querystringyesFull address string, e.g. “1600 Pennsylvania Ave NW, Washington, DC 20500”
limitintegernoMax parcels to return (default 5, max 20)
_apiKeystringyesRegrid API token (get one free at regrid.com — 30-day sandbox)

Example call

Arguments

{
  "query": "1600 Pennsylvania Ave NW, Washington, DC 20500",
  "_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_address","arguments":{"query":"1600 Pennsylvania Ave NW, Washington, DC 20500","_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_address', {
  "query": "1600 Pennsylvania Ave NW, Washington, DC 20500",
  "_apiKey": "your-regrid-api-key"
});

More examples

{
  "query": "350 Fifth Avenue, New York, NY 10118",
  "limit": 10,
  "_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