Healthcare Data Quality MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Healthcare Data Quality MCP ServerRun a full quality scan on claims.csv as outpatient"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Healthcare Data Quality MCP Server
An MCP (Model Context Protocol) server that exposes healthcare data quality validation as tools any MCP-compatible AI client — Claude Desktop, Claude Code, or Cowork — can call directly in conversation.
This wraps the rule logic from the Healthcare Data Quality & Governance Agent skill — all four quality dimensions (completeness, integrity, consistency, temporal accuracy) across five CMS/claims-adjacent data types — as callable tools, so instead of pasting data into a chat and asking for a report, an AI assistant can run the checks itself against a real file.
The rule logic and severity scoring live here as tested, versioned code. Turning the structured findings into the CDO-facing governance report (plain-English explanations, executive summary, PDF) stays a job for the skill/prompt layer, which consumes this server's JSON output.
Supported data types
inpatient, outpatient, carrier, pharmacy, ehr, population_health
— see rules/schema.py for the exact required fields and identifiers
per type.
Related MCP server: Delpha Data Quality MCP
What it does
profile_dataset— row/column counts, columns detected, sample rows, and a best-guess data type (confirm before running checks)check_completeness— flags required fields that are null, blank, or placeholder values, with severity scoring (Critical / High / Medium / Note)check_integrity— flags duplicate claim IDs, malformed provider NPIs, invalid ICD-9/ICD-10 diagnosis code formats, invalid beneficiary IDs, and payment amount anomaliescheck_consistency— flags mixed date formats and CMS code-set violations (gender, race, state FIPS, claim type, chronic condition flags)check_temporal— flags illogical date sequences (discharge before admission, service after death), future-dated records, implausible ages, and length-of-stay anomaliesrun_full_quality_scan— runs all four dimensions and returns a severity-scored, prioritised summary with AI readiness signals
Every dimension tool (except profile_dataset) takes filename and
data_type.
Setup
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txtRun it standalone (no MCP client needed)
python3 -c "
import rules, json
df = rules.load_csv('sample_data/claims.csv')
print(json.dumps(rules.run_full_scan(df, 'outpatient'), indent=2))
"Other sample files: inpatient_sample.csv, carrier_sample.csv,
pharmacy_sample.csv, ehr_sample.csv, population_health_sample.csv
— each paired with its matching data type.
Connect it to Claude Desktop
Open your Claude Desktop config file (
claude_desktop_config.json).Add an entry like the one in
claude_desktop_config.example.json, updating the path to the absolute path ofserver.pyon your machine.Restart Claude Desktop.
Ask Claude something like: "Run a full quality scan on claims.csv as outpatient claims data" — Claude will call the tool, run the checks, and summarize the findings.
Notes on the SDK
This was built against mcp==2.0.0, which uses mcp.server.MCPServer as
the high-level server class. Some older tutorials reference
mcp.server.fastmcp.FastMCP under the same name — the @mcp.tool()
decorator API is identical either way; only the import path and class
name differ by SDK version.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityAmaintenanceEnables AI applications to securely search and manage healthcare data from FHIR R4-compliant servers with built-in safety validation for AI-generated clinical observations, preventing recording of physiologically impossible values.Last updated14MIT
- Alicense-qualityCmaintenanceEnables AI-driven data quality operations such as validation, enrichment, and deduplication for customer data fields including email, address, phone, and LinkedIn profiles through natural language interactions.Last updated2MIT
- AlicenseAqualityCmaintenanceEnables AI assistants to look up medical billing codes, denial reasons, and payer rules for faster claim resolution.Last updated66MIT
- Flicense-qualityBmaintenanceEnables LLMs to interact with clinical patient records using tools for document ingestion, structured conversion, patient profiling, record listing, search, and secure Q&A over patient documentation.Last updated
Related MCP Connectors
Deterministic validation for AI-generated artifacts: JSON Schema, OpenAPI response, SQL syntax.
Runtime AI governance: decision gates, human approval, hash-chained audit, compliance mapping.
Guardrailed FHIR access for AI agents: PHI redaction, audit trail, step-up auth, tenant isolation
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/muyogalega25/healthcare-data-quality-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server