Census Geocoder
liveGovernmentGeographyUS Census Bureau Geocoder MCP
Tools
census_geocode_addressGeocodes a US street address to coordinates plus its Census geography — tract, block, place, congressional and school district GEOIDs.
No parameters required.
Try it
census_reverse_geocodeReturns every US Census geography containing a latitude/longitude — state, county, tract, 2020 block, place, district — with GEOIDs.
No parameters required.
Try it
census_geocode_batchGeocode up to ${BATCH_MAX} US addresses in a single call and return each one's match status, standardized address, coordinates, and state/county/tract/block FIPS codes. Use this instead of looping cen
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/census-geocoder/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/census-geocoder/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"census_geocode_address","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("census_geocode_address", {});// Or ask in plain English:
const answer = await px.ask("us census bureau geocoder mcp");