Pilot MCP for the CDC PLACES dataset
MCPpedia last refreshed this data
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"places": {
"cwd": "/path/to/cdc-places-mcp-server",
"env": {
"PYTHONPATH": "/path/to/cdc-places-mcp-server/src"
},
"args": [
"-m",
"places.app"
],
"command": "python"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
⚠️ DISCLAIMER: This is a proof of concept and is not intended for production use. The developers bear no responsibility for the accuracy of the data returned from the tool.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Pi Coding Agent extension (CLI-first) — routes bash/read/grep/find/ls through lean-ctx CLI for strong token savings. Optional MCP bridge can register advanced tools.
Compress tool outputs, logs, files, and RAG chunks before they reach the LLM. 60-95% fewer tokens, same answers. Library, proxy, MCP server.
97% token reduction for AI coding sessions — zero deps, 21 languages, MCP server
App framework, testing framework, and inspector for MCP Apps.
MCP Security Weekly
Get CVE alerts and security updates for Cdc Places Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
⚠️ DISCLAIMER: This is a proof of concept and is not intended for production use. The developers bear no responsibility for the accuracy of the data returned from the tool.
A Model Context Protocol (MCP) server that provides programmatic access to the CDC PLACES dataset for health statistics and outcomes data across US geographic areas.
The CDC PLACES dataset provides model-based estimates for chronic disease risk factors, health outcomes, and clinical preventive service use for all 50 states, the District of Columbia, and 500 of the largest US cities and census places. This MCP server enables easy access to this comprehensive health data through MCP clients (such as Claude Desktop, Zed, or any MCP-compatible application).
Latest Data: Supports PLACES Release 2025 (using 2023 BRFSS data for most measures)
get_cdc_places_dataFetch health data for specific measures, locations, and time periods.
Parameters:
year (string): Year of the data release (e.g., "2023", "2022")measureid (enum): Health measure identifier (e.g., "CSMOKING", "DIABETES", "OBESITY")geo (literal): Geographic level - "state", "county", "census", "zcta", or "places"datavaluetypeid (literal): "CrdPrv" (crude prevalence) or "AgeAdjPrv" (age-adjusted prevalence)locationname (optional): Location name (e.g., "Wayne" for Wayne County)Example Query:
Get smoking rates for Wayne County, Michigan in 2023
area_summary_statsCalculate summary statistics across multiple geographic areas within a scope.
Parameters:
geo_scope (literal): "counties_in_state", "tracts_in_county", or "places_in_state"state_code (string): Two-letter state abbreviation (e.g., "CA", "MI")year (string): Year of the data releasemeasureid (enum): Health measure identifierdatavaluetypeid (literal): Data value typecounty (optional): County name (required for "tracts_in_county" scope)Returns: Count, mean, min, Q1, median, Q3, max with location attribution for point statistics
Example Query:
Get obesity statistics across all counties in California for 2023
The server supports 45 health measures across 6 categories:
New in 2025: The LONELINESS measure was added to track social isolation indicators.
git clone https://github.com/GSA-TTS/cdc-places-mcp-server.git
cd cdc-places-mcp-server
pip install -r requirements.txt
Or using uv:
uv pip install -r requirements.txt
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"places": {
"command": "python",
"args": ["-m", "places.app"],
"cwd": "/path/to/cdc-places-mcp-server",
"env": {
"PYTHONPATH": "/path/to/cdc-places-mcp-server/src"
}
}
}
}
Add to Zed settings:
{
"context_servers": {
"places": {
"command": {
"path": "python",
... [View full README on GitHub](https://github.com/GSA-TTS/cdc-places-mcp-server#readme)