census-mcp-server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@census-mcp-serverGet median household income for all counties in Texas from ACS5 2022"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Public Hosted Server: https://census.caseyjhand.com/mcp
Tools
8 tools covering the full Census data workflow — from dataset discovery and variable search through geography resolution and ranked comparisons:
Tool | Description |
| Browse available Census Bureau datasets (ACS5, ACS1, Population Estimates, Decennial, County Business Patterns, Economic Census, Nonemployer Statistics) with vintage years and dataset codes. |
| List the geography levels supported by a dataset and year, with parent requirements and example FIPS values. |
| Keyword search across variable labels and concept groups. On ACS, returns estimate and margin-of-error codes together. |
| Fetch full metadata for one or more variable codes — label, concept, predicate type, universe, MOE sibling. |
| List the codes a filter dimension accepts ( |
| Convert place names (e.g., "King County, WA") or street addresses to Census FIPS identifiers via TIGERweb and Census Geocoder. |
| Query a Census dataset for variables at a specific geography. Returns estimates with MOE, suppression codes resolved to readable reasons, and predicate filtering for the business datasets. |
| Rank and compare variables across multiple geographies — all counties in a state, all states nationally, or a named set. Sorted table output, with the same predicate filtering. |
census_list_datasets
Browse available Census Bureau datasets.
Returns dataset codes, names, descriptions, and available vintage years
Covers ACS5, ACS5 Data Profiles, ACS5 Subject Tables, ACS1, ACS1 Data Profiles, Population Estimates, Decennial Redistricting (P.L. 94-171), Decennial DHC, County Business Patterns (
cbp), Economic Census (ecnbasic), and Nonemployer Statistics (nonemp)Each description names the filter predicates the dataset requires and the geography levels it publishes — both vary by dataset
Accepts an optional keyword filter
Dataset codes (e.g.,
acs/acs5) are the values to pass to other toolsavailable_yearsis exhaustive, not a sample: any other year fails withyear_not_availablebefore a request goes out, naming the years that do work. It is narrower than what the Census API hosts —pep/charvreaches its 2020-2022 estimates through theYEARfilter inside the 2023 vintage, and thecbp/nonempvintages left out reject theNAMEcolumn every query here sends
census_search_variables
Search Census variables by keyword.
Full-text search across label and concept fields with relevance scoring (exact concept match > label match > partial)
On ACS datasets, returns estimate (E suffix) and margin-of-error (M suffix) codes together so both can be requested in one query — no other family publishes margins of error, and an E-final code there is an ordinary code
Also surfaces the predicate codes a dataset filters on, such as
NAICS2017incbpConfigurable limit (default 20, max 100);
total_matchesindicates how many matched before the limitCache-backed: variables.json is fetched once per dataset+year with a configurable TTL (default 24h)
census_list_predicate_values
List the codes a filter dimension accepts, so a predicates map can be written without guessing.
Two routes, picked by where the answer lives: a dimension with a published value list is read from the dataset dictionary, one without is enumerated live by wildcarding it on the data endpoint.
NAICS*andPOPGROUPalways publish one (thousands of codes — narrow them withquery); on the current vintagesEMPSZES,LFO,RCPSZES,TAXSTAT, andTYPOPpublish none, so the live route is the only place their codes appearA dictionary value list is a classification shared across Census products, not a record of what one dataset serves —
dec/ddhcadeclares 5,543POPGROUPcodes and publishes 2,996,cbpdeclares 6,694NAICS2017codes and publishes 2,003. The declared list is checked against the dataset's own published rows and the dead codes are dropped;sourcesays whether that check ran and the notice says how many were withheld. A keyword that matched only withheld codes names them, so "total population" ondec/ddhcareports that001is declared and serves nothing rather than reading like a typoKeyword
querymatches code and label; results are sorted by code and a truncated list is disclosed rather than passed off as completeecnbasicpublishesTAXSTATandTYPOPper industry, sowithin_naicsscopes the enumeration — and the notice says the result is complete for that industry alone. A per-industry dimension is left unchecked for the same reason, since an unscoped check would withhold codes a scoped query does returnLive enumerations are cached per dataset, year, dimension, industry scope, and probe measure
census_resolve_geography
Convert place names and addresses to Census FIPS identifiers.
Named places (e.g., "King County, WA", "Seattle, WA", "California") resolved via TIGERweb MapServer
Street addresses resolved to tract level via Census Geocoder
Auto-detects the geography level — state for an abbreviation or spelled-out state name, county for "County"/"Borough"/"Parish", tract for "Tract", otherwise place falling back to county;
geography_typeoverrides itAlso resolves metropolitan/micropolitan statistical areas, combined statistical areas, and consolidated cities — never auto-detected, since their names overlap city names, so each needs an explicit
geography_type. The value is the level's own Census API name, so it feedsgeography_levelunchangedOptional
county_fipspins a tract name to one county, since a tract name is unique only inside its county. Only county and tract sit within a county, so it restricts resolution to those two levels rather than being dropped on a layer that cannot apply itPrefers an exactly-named match, so "Kansas City, MO" does not resolve to North Kansas City
Never picks between matches: anything still matching more than one geography comes back as
ambiguous_name, with every candidate carrying the code resolving it would have returned, plus the state that separates same-named placesReturns
state_fips(→parent_fips) andfips_summary(→geography_fips) ready to pass to other tools; a statistical area omitsstate_fips, since it can span several states and takes no parent
census_query_data
Query a Census dataset for one or more variables at a specific geography.
Requires FIPS codes — use
census_resolve_geographyfirst for place namesUse
geography_fips: "*"to return all geographies at the level within the parentThe level and its parents are checked against the dataset's own geography metadata before the query runs: a missing
parent_fipsreturnsparent_requirednaming what to add, and a parent the level does not sit within returnsparent_not_acceptednaming the input to drop — neither reaches the API as an opaque 400parent_fipsandcounty_fipsare zero-padded to the widths the Census matches on, so"5"and"05"both find Arkansas; either also takes"*", which is what reaches every block group in a state.geography_fipstakes its width fromgeography_leveland is passed through as givenEach row carries both
geography_fips(bare level code, round-trips back into this tool) andgeography_geoid(level plus parents, nationally unique)A query that matches nothing returns
no_datawith dataset-aware recovery, not a retried upstream errorOptional
predicatesmap for the datasets that filter on one —{"NAICS2017": "5112"}narrows acbpcount to software publishers, andcensus_list_predicate_valuessupplies the codes. Keys are validated against the dataset's own variables before the queryDimensions left unset are named in a notice and their applied default is echoed per row in
applied_filters. That label is load-bearing:cbpdefaultsNAICS2017to the all-industries total, butdec/ddhcadefaultsPOPGROUPto one population group andecnbasicdefaults its NAICS dimension to a single sector, so an unfiltered value can read like a total without being one. A dimension that publishes no label attribute (pep/charvYEAR, thenonempNAICS codes before 2012) has no default to echo, and the notice says so rather than leaving it looking undefaultedOne geography can come back on more than one row:
pep/charvpublishes an April 1 estimates base alongside its July 1 estimate, andMONTHis what separates them — notYEAR, which both rows carry. Each row names its record in arecordfield and on its rendered heading, and the notice gives the predicate that pins one ({"MONTH": "7"})Suppression codes (geography too small, data not collected, etc.) resolved to human-readable reasons
A cell that holds text rather than a number keeps it, under
value, so a nullestimatesays which of three things it is:suppressedis a number the Census withheld, avaluealongside it is text (GEO_IDreturns"0500000US53033"), and neither is an empty cellVariable labels enriched from cache and surfaced alongside estimates
Requires
CENSUS_API_KEY
census_compare_geographies
Rank and compare variables across multiple geographies.
Fetches all geographies at a level (e.g., all WA counties) in one API call, then sorts and slices
Optional
withinparameter to constrain to a parent FIPS; omit for national comparisonOptional
geographieslist to filter to specific geographies — full GEOIDs ("53033","06037") work across states; bare level codes ("033") needwithinto disambiguate. Entries matching no row, and bare codes that matched more than one state, are named in a noticeSame pre-query level and parent validation as
census_query_data, reported againstwithin/within_countyConfigurable sort variable, direction, and limit (default 50, max 500)
Same
predicatesmap ascensus_query_data, applied to every geography — without it the ranking runs on whatever default the API picks, named in the notice and echoed per row inapplied_filtersA dataset that publishes several records per geography is refused rather than ranked twice: a rank is a statement about one geography, so
pep/charvwithout a pinned record fails withambiguous_rowsnamingMONTHand the code to pass. With one pinned, each geography ranks once and the row says which record it isSuppressed values sorted to end of results and labeled rather than passed through as negative sentinels
Same
valuefield ascensus_query_datafor a text cell; text has no ordering, so sorting on a column of it leaves every row tiedRequires
CENSUS_API_KEY
Related MCP server: Census MCP Server
Features
Built on @cyanheads/mcp-ts-core:
Declarative tool definitions — single file per tool, framework handles registration and validation
Unified error handling — handlers throw, framework catches, classifies, and formats with recovery hints
Structured logging with optional OpenTelemetry tracing
STDIO and Streamable HTTP transports
Census-specific:
In-process variable cache with configurable TTL — variables.json fetched once per dataset+year, searched client-side
Three-API backend: Census Data API for data queries, TIGERweb for named-place resolution, Census Geocoder for address-to-tract
Automatic retry with backoff on all external API calls
FIPS formatting helpers — zero-padded state, county, and tract codes ready to pass between tools
Agent-friendly output:
Workflow-oriented tool surface —
fips_summaryandstate_fipsreturn values are ready to pass asgeography_fipsandparent_fipsto the next toolSuppression codes decoded — Census negative sentinel values (e.g.,
-666666666) surfaced as human-readable reasons instead of raw numbersRecovery hints on errors — ambiguous geography names include candidate lists; missing API key errors include registration URL
Getting started
API key: Register a free key at api.census.gov/data/key_signup.html. Variable search and geography resolution work without a key; data queries (
census_query_data,census_compare_geographies) require one.
Add the following to your MCP client configuration file:
{
"mcpServers": {
"census-mcp-server": {
"type": "stdio",
"command": "bunx",
"args": ["@cyanheads/census-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info",
"CENSUS_API_KEY": "your-census-api-key"
}
}
}
}Or with npx (no Bun required):
{
"mcpServers": {
"census-mcp-server": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@cyanheads/census-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info",
"CENSUS_API_KEY": "your-census-api-key"
}
}
}
}Or with Docker:
{
"mcpServers": {
"census-mcp-server": {
"type": "stdio",
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "MCP_TRANSPORT_TYPE=stdio",
"-e", "CENSUS_API_KEY=your-census-api-key",
"ghcr.io/cyanheads/census-mcp-server:latest"
]
}
}
}For Streamable HTTP, set the transport and start the server:
MCP_TRANSPORT_TYPE=http MCP_HTTP_PORT=3010 CENSUS_API_KEY=... bun run start:http
# Server listens at http://localhost:3010/mcpPrerequisites
Bun v1.3.0 or higher (or Node.js v24+).
A Census API key — register free at api.census.gov/data/key_signup.html. Required for
census_query_dataandcensus_compare_geographies; other tools work without it.
Installation
Clone the repository:
git clone https://github.com/cyanheads/census-mcp-server.gitNavigate into the directory:
cd census-mcp-serverInstall dependencies:
bun installConfigure environment:
cp .env.example .env
# edit .env and set CENSUS_API_KEYConfiguration
Variable | Description | Default |
| Required for data queries. Register free at api.census.gov/data/key_signup.html. | — |
| Default vintage year when no year is specified. |
|
| Hours to cache variables.json per dataset+year in memory. |
|
| Transport: |
|
| Port for HTTP server. |
|
| Auth mode: |
|
| Log level ( |
|
| Enable OpenTelemetry instrumentation. |
|
See .env.example for the full list of optional overrides.
Running the server
Local development
# One-time build
bun run rebuild
# Run the built server
bun run start:stdio
# or
bun run start:httpRun checks and tests:
bun run devcheck # Lint, format, typecheck, security audit
bun run test # Vitest test suite
bun run lint:mcp # Validate MCP definitions against specDocker
docker build -t census-mcp-server .
docker run --rm -e CENSUS_API_KEY=your-key -p 3010:3010 census-mcp-serverThe Dockerfile defaults to HTTP transport, stateless session mode, and logs to /var/log/census-mcp-server. OpenTelemetry peer dependencies are installed by default — build with --build-arg OTEL_ENABLED=false to omit them.
Project structure
Path | Purpose |
|
|
| Census-specific env var parsing and validation with Zod. |
| Tool definitions ( |
| Census Data API client — data queries, suppression code mapping, retry logic. |
| Geography resolution — TIGERweb named-place lookup and Census Geocoder address-to-tract. |
| In-process variables.json cache with TTL and keyword search. |
| Vitest tests mirroring |
Development guide
See CLAUDE.md for development guidelines and architectural rules. The short version:
Handlers throw, framework catches — no
try/catchin tool logicUse
ctx.logfor request-scoped logging,ctx.statefor tenant-scoped storageRegister new tools via the barrel in
src/mcp-server/tools/definitions/index.tsWrap external API calls: validate raw → normalize to domain type → return output schema; never fabricate missing fields
Contributing
Issues and pull requests are welcome. Run checks and tests before submitting:
bun run devcheck
bun run testLicense
Apache-2.0 — see LICENSE for details.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceEnables access to U.S. Census Bureau data including demographics, population, income, and housing statistics. Users can query specific variables, search datasets, and retrieve geographic FIPS codes across various surveys like the American Community Survey and Decennial Census.1
- AlicenseAqualityCmaintenanceNode.js MCP server enabling AI agents to access comprehensive U.S. Census Bureau demographic and economic data, including ACS, decennial census, and business patterns.1722MIT
- Flicense-qualityCmaintenanceA production-grade MCP server for querying U.S. Census Bureau data (ACS 5-Year and Decennial) with tools for geographic fuzzy matching, variable search, and batched data retrieval, backed by a PostgreSQL cache for performance.
- AlicenseAqualityDmaintenanceAn MCP server that exposes the IPUMS API as LLM tools for browsing metadata, creating and downloading extracts, and generating reproducible R/Python code.23MIT
Related MCP Connectors
MCP server for live, sourced Brazilian public data from the official IBGE APIs.
MCP server for Statistics Sweden (SCB) - 1200+ tables with population, economy, environment data
This MCP server provides seamless access to Malaysia's government open data, including datasets, w…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cyanheads/census-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server