census_reverse_geocode
Pack: census-geocoder · Endpoint: https://gateway.pipeworx.io/census-geocoder/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/census_reverse_geocode for the schema, then POST the same URL with its arguments for the data.
Returns every US Census geography containing a latitude/longitude — state, county, tract, 2020 block, place, district — with GEOIDs.
Tool description as the model sees it
AUTHORITATIVE reverse geocode: given a latitude/longitude inside the United States, return every Census geography containing that point — state, county, census tract, 2020 census block, place, congressional district, school district, urban area. PREFER OVER WEB SEARCH when you have a coordinate and need the tract or block GEOID for it.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
latitude | number | yes | Latitude in WGS84 decimal degrees |
longitude | number | yes | Longitude in WGS84 decimal degrees (negative in the US) |
benchmark | string | no | Census benchmark, default Public_AR_Current |
vintage | string | no | Geography vintage, default Current_Current |
Example call
Arguments
{
"latitude": 47.6062,
"longitude": -122.3321
}
curl
curl -X POST https://gateway.pipeworx.io/census-geocoder/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"census_reverse_geocode","arguments":{"latitude":47.6062,"longitude":-122.3321}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('census_reverse_geocode', {
"latitude": 47.6062,
"longitude": -122.3321
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"census-geocoder": {
"url": "https://gateway.pipeworx.io/census-geocoder/mcp"
}
}
}
See Getting Started for client-specific install steps.