census_area

Pack: fcc · Endpoint: https://gateway.pipeworx.io/fcc/mcp

Resolve a US latitude/longitude (decimal degrees) to its full Census area record: block/county/state FIPS + names plus 2020 block population and FCC market-area codes (BEA, BTA, CMA, EAG, MEA, MTA, PEA, REA, RPC, VPC). Richer than census_block; use when you need population or FCC licensing market codes for a point.

Parameters

NameTypeRequiredDescription
latnumberyesLatitude in decimal degrees (e.g. 38.8976).
lonnumberyesLongitude in decimal degrees (e.g. -77.0365).
censusYearstringnoCensus vintage: “2020” (default) or “2010”.

Example call

Arguments

{
  "lat": 38.8976,
  "lon": -77.0365
}

curl

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_area","arguments":{"lat":38.8976,"lon":-77.0365}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('census_area', {
  "lat": 38.8976,
  "lon": -77.0365
});

More examples

{
  "lat": 34.0522,
  "lon": -118.2437,
  "censusYear": "2010"
}

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.

Regenerated from source · build August 31, 2026