census_block
Pack: fcc · Endpoint: https://gateway.pipeworx.io/fcc/mcp
Resolve a US latitude/longitude (decimal degrees) to its Census block, county, and state FIPS codes and names. Returns the 15-digit block FIPS, 5-digit county FIPS, 2-digit state FIPS, state code/name, and a bounding box. Pairs with the US Census API (FIPS codes are its join keys). Coordinates outside the US yield null FIPS values.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
lat | number | yes | Latitude in decimal degrees (e.g. 38.8976). |
lon | number | yes | Longitude in decimal degrees (e.g. -77.0365). |
censusYear | string | no | Census vintage for the block geography: “2020” (default) or “2010”. |
Example call
curl -X POST https://gateway.pipeworx.io/fcc/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"census_block","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"fcc": {
"url": "https://gateway.pipeworx.io/fcc/mcp"
}
}
}
See Getting Started for client-specific install steps.