CMS Provider Data Catalog MCP
A remote MCP server that lets an LLM explore, query, aggregate, and benchmark the ~234 datasets in the CMS Provider Data Catalog — hospitals, dialysis facilities, nursing homes, home health, hospice, physicians, and more — in plain language.
README
CMS Provider Data Catalog MCP
A remote MCP server that lets an LLM (Claude, ChatGPT) explore, query, aggregate, and benchmark the ~234 datasets in the CMS Provider Data Catalog — hospitals, dialysis facilities, nursing homes, home health, hospice, physicians, and more — in plain language.
Runs as a Cloudflare Worker using the agents McpAgent.
The PDC API (DKAN) is read-only and unauthenticated, so the Worker is a thin, stateless proxy.
What it can do: find datasets by category or keyword → inspect their columns (with CMS's human labels) → filter/sort individual rows → run GROUP BY aggregates (averages, counts, rankings) → compare one facility against its state and national benchmarks — all read-only.
- 📣 See MARKETING.md for capabilities and example questions users can ask.
- 📝 See CHANGELOG.md for version history.
Discoverability
So a client (and the user) can tell at a glance what's available:
- Server instructions — the server advertises its 10 provider-type categories and the recommended workflow on connect, so the model knows its scope without any tool call.
pdc://catalogresource — the browsable category map (themes, dataset counts, examples) as ambient context for clients that support MCP resources.explore_cms_dataprompt — one-click "what CMS data can I explore?" for the user.- Typed output schemas — every tool declares an
outputSchemaand returnsstructuredContent, so clients (e.g. ChatGPT dev mode) can parse and render results reliably instead of re-reading JSON.
Tools
| Tool | What it does |
|---|---|
list_categories |
The 10 provider-type categories (Hospitals, Dialysis facilities, …) with dataset counts + examples. Start here for "what do you have access to?" |
search_datasets |
Full-text search, optionally scoped to a theme (category) and/or keyword → identifiers, titles, descriptions |
get_dataset |
Metadata for one dataset + its distributions (queryable tables, each a UUID), theme, and data-dictionary link |
get_dataset_schema |
Column name + type + CMS's human-readable label for a distribution — call before querying |
query_dataset |
Structured query: conditions (filters), properties (column select), sorts, limit/offset. Returns rows + total match count. |
aggregate_dataset |
GROUP BY aggregation: count/sum/avg/min/max metrics, optional group_by, conditions (WHERE), and sorts (rank by a metric). E.g. average star rating by state, facilities per state. |
compare_to_benchmarks |
One entity vs. benchmarks in a single call: each measure's value for a facility alongside the national average and its group (e.g. state) average, with cohort sizes. |
Intended workflow the tool descriptions steer the model toward: list_categories → search_datasets → get_dataset → get_dataset_schema → query_dataset / aggregate_dataset / compare_to_benchmarks.
compare_to_benchmarks computes benchmarks as simple averages over the distribution's own rows
(transparent, in 3 upstream calls) — not CMS's separately published risk-adjusted State/National
Averages datasets, whose columns don't map 1:1 to facility columns. Those remain queryable
directly via the normal tools.
Aggregation uses DKAN's structured query (expression + groupings), not SQL — DKAN's SQL
endpoint doesn't support GROUP BY. Numeric columns stored as text are cast automatically, and
metric values are returned as numbers.
The full dataset list (used by list_categories and the catalog resource) is cached in-isolate
for 10 minutes, so discovery is a single upstream call.
Develop
npm install
npm run dev # wrangler dev, serves /mcp and /sse locally
npm run typecheck
Local smoke test (Streamable HTTP): POST an initialize to http://localhost:8787/mcp,
capture the mcp-session-id response header, send notifications/initialized, then
tools/call.
Deploy
npm run deploy # wrangler deploy
This creates the Durable Object (used by McpAgent for per-session state) on first deploy.
Connect a client
After deploy you'll have a URL like https://cms-pdc-mcp.<subdomain>.workers.dev.
- Streamable HTTP (preferred):
https://.../mcp - SSE (legacy clients):
https://.../sse
Add it as a custom connector in Claude, or via Developer Mode / connectors in ChatGPT. No auth is required.
Reliability & ops
All upstream calls to CMS go through one hardened req() helper (src/pdc.ts):
- Retries with backoff on transient failures (network errors, 5xx, 429); fails fast on 4xx.
- Bounded timeout (20s) with a clear timeout error rather than a hang.
- Clean error messages — DKAN's
{ message }is surfaced (e.g. "Column not found.") instead of a raw JSON blob. - Short-TTL GET caching (60s, Cloudflare Cache API) so repeated identical reads within a conversation don't re-hit CMS. POST queries/aggregations are always fresh.
- Structured logs (
{"at":"pdc",method,path,status,ms,cache}) surface in Workers observability (enabled inwrangler.jsonc).
Column descriptions (data dictionaries)
Sentence-level column descriptions are built once, locally and committed as JSON — the Worker never parses anything at runtime.
data_dictionaries/*.pdf ──► npm run build:dictionaries ──► src/dictionaries/*.json ──► git push ──► wrangler deploy
(gitignored, local) (one-time, local, pdftotext) (committed) (imports JSON at bundle time)
- Source files (
data_dictionaries/) are gitignored — the PDFs are never pushed. npm run build:dictionariesextracts{ normalizedLabel: description }intosrc/dictionaries/<provider>.jsonand a mergeddescriptions.json. This runspdftotextlocally; it is not part ofdeploy.- The Worker imports
descriptions.json, which esbuild inlines into the bundle. At runtimeget_dataset_schemadoes an in-memory label lookup — no PDF parsing, no reprocessing on push. src/dictionaries/overrides.jsonholds hand-authored fixes keyed by CMS label. They always win and are never overwritten by the build, so re-running it can't clobber manual work. To improve coverage: add lines tooverrides.json, runnpm run build:dictionaries, commit.
Coverage is partial and per-provider (dialysis ~46% after overrides; the hospital dictionary is a
narrative spec that doesn't table-parse) — fill gaps via overrides.json.
Notes / next steps
- Read-only. Only
GET/POSTquery endpoints of the PDC API are used; nothing writes. - Raw SQL (
/datastore/sql) is intentionally not exposed — structured queries only, to keep the model from writing broken/expensive queries against DKAN's bracketed SQL dialect. - Distribution UUIDs change when CMS republishes a dataset, so always resolve them via
get_datasetrather than caching them. - Column labels come for free. DKAN stores each column's original CSV header as the field's
description, soget_dataset_schemareturns a humanlabelfor every column of all datasets (e.g.mortality_rate_upper_confidence_limit_975→ "Mortality Rate: Upper Confidence Limit (97.5%)") with no PDF parsing. - Richer, sentence-level descriptions are built locally from
data_dictionaries/and attached byget_dataset_schemavia a conservative label match (a missing description beats a wrong one). See Column descriptions above for the full workflow.
Roadmap
- ✅ Discovery, search, schema, structured queries
- ✅ Human column labels + typed output schemas
- ✅ Aggregation & insights (
aggregate_dataset) - ✅ Benchmark comparison (
compare_to_benchmarks) - ✅ Reliability & ops (retries, caching, clean errors, logs)
- 🟡 Rich column descriptions — mechanism live and wired into
get_dataset_schema; dialysis (~39%) and physician auto-extracted fromdata_dictionaries/. Remaining providers use different PDF layouts (hospital is a narrative spec) and need bespoke extraction or hand-authoring; coverage improves by editing the committedsrc/dictionaries/*.json.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。