PluginBench
MCP Server

Census (ACS by ZIP) MCP Server

io.github.mcpwright/census-mcp

What is the Census (ACS by ZIP) MCP server?

U.S. Census (ACS) data by ZIP: income, demographics, housing, education, from a local store.

How to install Census (ACS by ZIP)

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • CENSUS_API_KEY
    required

    Free Census API key (get one at https://api.census.gov/data/key_signup.html). Required for the one-time bulk download of the ACS dataset.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "census-mcp": {
      "command": "uvx",
      "args": [
        "mcpwright-census"
      ],
      "env": {
        "CENSUS_API_KEY": "<YOUR_CENSUS_API_KEY>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "census-mcp": {
      "command": "uvx",
      "args": [
        "mcpwright-census"
      ],
      "env": {
        "CENSUS_API_KEY": "<YOUR_CENSUS_API_KEY>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "census-mcp": {
      "command": "uvx",
      "args": [
        "mcpwright-census"
      ],
      "env": {
        "CENSUS_API_KEY": "<YOUR_CENSUS_API_KEY>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "census-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcpwright-census"
      ],
      "env": {
        "CENSUS_API_KEY": "<YOUR_CENSUS_API_KEY>"
      }
    }
  }
}
Claude Code
claude mcp add census-mcp --env CENSUS_API_KEY=<YOUR_CENSUS_API_KEY> -- uvx mcpwright-census

Related MCP servers

SEC filings in your agent: issuers, Reg CF/D/A raises, XBRL financials, insider trades.

View repository →

FRED economic time series + ALFRED vintages: data as originally published, before revisions.

View repository →

IRS income & tax stats by ZIP in your agent: AGI distribution, tax, credits, deductions.

View repository →