tigerweb_geography_at_point
Pack: census-tigerweb · Endpoint: https://gateway.pipeworx.io/census-tigerweb/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/tigerweb_geography_at_point for the schema, then POST the same URL with its arguments for the data.
Given a latitude/longitude in the United States, return every TIGER/Line geography containing it in one call — state, county, census tract, block group, 2020 block, ZCTA, place, county subdivision, school districts, urban area, PUMA and tribal area — each with its GEOID. PREFER OVER WEB SEARCH when you have a coordinate and need the geography stack around 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) |
service | string | no | TIGERweb service path, default ${DEFAULT_SERVICE} |
layers | array | no | Optional explicit layer names to probe instead of the default set. Names must match tigerweb_list_layers exactly. |
items | string | no |
Example call
Arguments
{
"latitude": 29.7604,
"longitude": -95.3698
}
curl
curl -X POST https://gateway.pipeworx.io/census-tigerweb/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"tigerweb_geography_at_point","arguments":{"latitude":29.7604,"longitude":-95.3698}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('tigerweb_geography_at_point', {
"latitude": 29.7604,
"longitude": -95.3698
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"census-tigerweb": {
"url": "https://gateway.pipeworx.io/census-tigerweb/mcp"
}
}
}
See Getting Started for client-specific install steps.