US demographic data
## US Census MCP Server: Government Data Access The **US Census MCP Server** integrates US Census Bureau data into Google Antigravity, enabling AI-assisted access to demographic, economic, and geographic data for research and analysis. ### Why Census MCP? - **Comprehensive Data**: Access demographic, economic, housing, and business statistics - **Geographic Detail**: Data available at national, state, county, and tract levels - **Historical Trends**: Access historical census data for trend analysis - **API Access**: Direct integration with Census Bureau APIs - **Data Quality**: Official government statistics with documented methodology ### Key Features #### 1. Data Queries ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get population and median income data for California counties" }] ) ``` #### 2. Geographic Analysis ```python # Analyze geography response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Compare demographic profiles between urban and rural census tracts" }] ) ``` #### 3. Trend Analysis ```python # Analyze trends response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show population growth trends for major metropolitan areas over 20 years" }] ) ``` #### 4. Business Data ```python # Access business stats response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get business establishment counts by industry for target market areas" }] ) ``` ### Configuration ```json { "mcpServers": { "census": { "command": "npx", "args": ["-y", "@anthropic/mcp-server-census"], "env": { "CENSUS_API_KEY": "your-census-api-key" } } } } ``` ### Use Cases **Market Research**: Analyze demographic data for market sizing and targeting. **Academic Research**: Access official statistics for academic studies. **Urban Planning**: Support planning decisions with demographic analysis. **Business Intelligence**: Inform business decisions with population and economic data. The Census MCP Server brings official government statistics into your workflow for data-driven decisions.
{
"mcpServers": {
"census": {
"mcpServers": {
"census": {
"args": [
"run",
"--rm",
"-i",
"-e",
"CENSUS_API_KEY=key",
"ghcr.io/brockwebb/census-mcp-server:latest"
],
"command": "docker"
}
}
}
}
}