The MCP Census Server implements the Model Context Protocol (MCP) for accessing US Census Bureau data via JSON-RPC over HTTP.
initialize
and notifications/initialized
flows.X-API-Key
authentication for all endpoints.census/get
tool for flexible Census API queries./health
endpoint for liveness monitoring./docs
and MDX-based site built with Mintlify.client/
subfolder.├── app.py # FastAPI JSON-RPC server
├── start.sh # Setup script for server + client
├── docs/ # Documentation site (MDX + Mintlify)
│ ├── index.md # Intro page
│ ├── about.md # This about page
│ ├── howto.md # How to run and setup
│ ├── authentication.md # API key instructions
│ ├── usage.md # Usage examples
│ └── architecture.md # System architecture
├── client/ # Next.js MCP client app
└── tests/ # Pytest suite for server