county_for_point
Pack: fcc · Endpoint: https://gateway.pipeworx.io/fcc/mcp
Lightweight reverse geocode: return just the county and state for a US latitude/longitude (decimal degrees) — county FIPS + name, state FIPS + code + name. Convenience wrapper over the FCC block-find service for when you only need the containing county/state, not the full block record.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
lat | number | yes | Latitude in decimal degrees. |
lon | number | yes | Longitude in decimal degrees. |
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":"county_for_point","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.