Healthcare Analytics MCP Server
Enables comprehensive healthcare data analysis using Tuva Health demo data with tools for value-based care analytics, quality measures, utilization analysis, and financial metrics. Supports patient demographics, PMPM analysis, chronic conditions tracking, readmissions analysis, and HCC risk scoring through BigQuery integration.
README
Healthcare Analytics MCP Server
A comprehensive Model Context Protocol (MCP) server for healthcare data analysis using Tuva Health demo data. This server provides tools for value-based care analytics, quality measures, utilization analysis, and financial metrics commonly used in healthcare organizations.
Motivation
To get a quick MCP setup that can be used to service most of the common data questions that get floated over to analysts and are simple data pulls. Something like this could be utilized at healthcare companies to free up time for analysts to work on more complicated analytics, while also providing well-defined queries to be reused across an org.
- The Tuva Project provides dbt project to build a typical database setup that translates well across the industry.
- Warp (I think it was using Sonnet) did pretty well with the initial setup. I had the demo data loaded to bigquery and MCP toolbox for databases set up so it could get context from the existing tables. The queries were wrong, but only required minimal fixes. The scaffolding is there for analysts to write official queries to be used by the server.
Features
Core Analytics Tools
- Patient Demographics: Age groups, gender distribution, enrollment analysis
- Utilization Summary: Claims analysis, service category breakdown
- PMPM Analysis: Per Member Per Month financial metrics with trends
- Quality Measures: HEDIS and clinical quality indicator tracking
- Chronic Conditions: Prevalence analysis and condition family insights
- High-Cost Patients: Case management identification
- Readmissions Analysis: 30-day readmission patterns
- HCC Risk Scores: Risk adjustment and stratification
Value-Based Care Metrics
- Risk-adjusted cost analysis
- Quality performance tracking
- Population health insights
- Care gap identification
- Financial performance monitoring

Setup
Option 1: Docker Deployment (Recommended)
The easiest way to use this MCP server is with the pre-built Docker image from GitHub Container Registry.
Prerequisites
- Docker installed on your machine
- MCP-compatible client (Claude Desktop, Warp, etc.)
- Google Cloud Project with BigQuery API enabled
- Tuva Health demo data loaded in BigQuery
- Service account with BigQuery access
Docker Authentication Options
Option A: Service Account Key (Recommended)
Configure your MCP client (e.g., Claude Desktop) with:
{
"mcpServers": {
"healthcare-data": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--pull=always",
"-v", "/path/to/your/service-account.json:/app/credentials.json:ro",
"-e", "GOOGLE_APPLICATION_CREDENTIALS=/app/credentials.json",
"-e", "GCP_PROJECT_ID=your-gcp-project-id",
"-e", "BIGQUERY_DATASET_PREFIX=your-dataset-prefix",
"ghcr.io/dslans/mcp_healthcare_data:latest"
]
}
}
}
Option B: Application Default Credentials (ADC)
If you've authenticated with gcloud auth application-default login:
{
"mcpServers": {
"healthcare-data": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--pull=always",
"-v", "your-home-directory/.config/gcloud:/home/appuser/.config/gcloud:ro",
"-e", "GCP_PROJECT_ID=your-gcp-project-id",
"-e", "BIGQUERY_DATASET_PREFIX=your-dataset-prefix",
"ghcr.io/dslans/mcp_healthcare_data:latest"
]
}
}
}
Replace the placeholders:
your-home-directorywith your home directory (/Users/dslans)/path/to/your/service-account.jsonwith your actual service account file path (Option A)your-gcp-project-idwith your Google Cloud Project ID (For example prj-tuva-demo)your-dataset-prefixwith your BigQuery dataset prefix (Can be just the project name ending with.likeprj-tuva-demo.or leave blank)
Restart your MCP client and start using the healthcare analytics tools!
Option 2: Local Installation
For developers who want to run the MCP server locally or customize the code.
Prerequisites
- Python 3.9+
- MCP-compatible client (Claude Desktop, Warp, etc.)
- Google Cloud Project with BigQuery API enabled
- Tuva Health demo data loaded in BigQuery
- Service account with BigQuery access
Installation Steps
- Clone the repository:
git clone <your-repo-url>
cd mcp_healthcare_data
- Install Python dependencies:
# Using uv (recommended)
uv pip install -r requirements.txt
# Or using pip
pip install -r requirements.txt
- Set up environment variables:
cp .env.example .env
- Configure your
.envfile:
GOOGLE_APPLICATION_CREDENTIALS=/path/to/your/service-account-key.json
GCP_PROJECT_ID=your-project-id
BIGQUERY_DATASET_PREFIX=your_dataset_prefix
- Test the server:
# Test basic functionality
python -c "import healthcare_mcp_server; print('Server imports successfully')"
# Test with actual data (requires valid credentials)
python test_server.py
- Configure your MCP client:
{
"mcpServers": {
"healthcare-analytics": {
"command": "python",
"args": ["/full/path/to/mcp_healthcare_data/healthcare_mcp_server.py"],
"env": {
"GOOGLE_APPLICATION_CREDENTIALS": "/path/to/your/service-account-key.json",
"GCP_PROJECT_ID": "your-project-id",
"BIGQUERY_DATASET_PREFIX": "your_dataset_prefix"
}
}
}
}
- Restart your MCP client and start using the healthcare analytics tools!
Local Development Authentication
Option A: Service Account Key
- Download and configure as shown in the Google Cloud Authentication section below
Option B: Application Default Credentials
# Authenticate with your user account
gcloud auth application-default login
# Set your project
gcloud config set project YOUR_PROJECT_ID
# Leave GOOGLE_APPLICATION_CREDENTIALS unset in .env
Google Cloud Authentication
Create Service Account
- Create a service account:
gcloud iam service-accounts create healthcare-mcp-server \
--display-name="Healthcare MCP Server"
- Grant BigQuery permissions:
gcloud projects add-iam-policy-binding YOUR_PROJECT_ID \
--member="serviceAccount:healthcare-mcp-server@YOUR_PROJECT_ID.iam.gserviceaccount.com" \
--role="roles/bigquery.user"
gcloud projects add-iam-policy-binding YOUR_PROJECT_ID \
--member="serviceAccount:healthcare-mcp-server@YOUR_PROJECT_ID.iam.gserviceaccount.com" \
--role="roles/bigquery.dataViewer"
- Download service account key:
gcloud iam service-accounts keys create ~/healthcare-mcp-key.json \
--iam-account=healthcare-mcp-server@YOUR_PROJECT_ID.iam.gserviceaccount.com
Available Tools
1. Patient Demographics Analysis
get_patient_demographics(
start_date="2018-01-01",
end_date="2018-12-31",
age_groups=True
)
Returns demographic breakdown including age groups, gender distribution, and total patient counts.
2. Healthcare Utilization Summary
get_utilization_summary(
start_date="2018-01-01",
end_date="2018-12-31",
service_category="Emergency Department" # Optional
)
Provides comprehensive utilization metrics including claims counts, costs, and service category breakdowns.
3. PMPM Financial Analysis
get_pmpm_analysis(
start_date="2018-01-01",
end_date="2018-12-31",
payer="Medicare" # Optional
)
Calculates Per Member Per Month costs across different service categories with trend analysis.
4. Quality Measures Summary
get_quality_measures_summary(
measure_name="adh_diabetes", # Optional
year="2018"
)
Returns quality measure performance rates and compliance flags for HEDIS and clinical measures.
5. Chronic Conditions Prevalence
get_chronic_conditions_prevalence(
condition_category="Diabetes", # Optional
year="2018"
)
Analyzes prevalence rates for chronic conditions across the patient population.
6. High-Cost Patient Identification
get_high_cost_patients(
cost_threshold=10000.0,
year="2018",
limit=100
)
Identifies patients exceeding cost thresholds for case management prioritization.
7. Readmissions Analysis
get_readmissions_analysis(
year="2018",
condition_category="Heart Failure" # Optional
)
Calculates 30-day readmission rates and patterns for quality improvement.
8. HCC Risk Score Analysis
get_hcc_risk_scores(
year="2018",
limit=1000
)
Provides HCC risk score distribution and population risk stratification.
Data Requirements
The server expects Tuva Health formatted data with the following key datasets:
core.*- Claims, patient, eligibility, and encounter dataquality_measures.*- HEDIS and clinical quality measuresfinancial_pmpm.*- Per Member Per Month financial calculationschronic_conditions.*- Chronic condition classificationscms_hcc.*- HCC risk adjustment datareadmissions.*- Readmission analysis results
Example Use Cases
Value-Based Care Analytics
# Get overall population health metrics
demographics = get_patient_demographics()
quality = get_quality_measures_summary()
chronic = get_chronic_conditions_prevalence()
# Analyze cost and utilization patterns
pmpm = get_pmpm_analysis()
utilization = get_utilization_summary()
# Identify care management opportunities
high_cost = get_high_cost_patients(cost_threshold=15000)
risk_scores = get_hcc_risk_scores()
Monthly Performance Reporting
# Generate monthly financial and quality reports
monthly_pmpm = get_pmpm_analysis(
start_date="2018-01-01",
end_date="2018-01-31"
)
monthly_quality = get_quality_measures_summary(year="2018")
monthly_readmissions = get_readmissions_analysis(year="2018")
Example Questions
Once your MCP server is configured, you can ask natural language questions in your MCP client (Claude Desktop, Warp, etc.). Here are some examples:
📊 Population Health & Demographics
- "Show me the patient demographics for 2018, including age group breakdowns"
- "What's the gender distribution of our patient population?"
- "How many patients do we have enrolled and what's the average age?"
💰 Financial & Cost Analysis
- "Calculate the PMPM costs for all service categories in 2018"
- "Who are our highest cost patients above $20,000 in total spend?"
- "Show me per-member-per-month analysis for Medicare patients only"
- "What are the top 10 most expensive service categories by total cost?"
🏥 Healthcare Utilization
- "Analyze healthcare utilization patterns for 2018"
- "Show me Emergency Department utilization statistics"
- "What's the breakdown of claims by service category?"
- "How many unique patients had medical claims last year?"
📈 Quality Measures & Performance
- "What are our quality measure performance rates for 2018?"
- "Show me diabetes medication adherence scores"
- "Analyze our HEDIS quality measures and compliance rates"
- "Which quality measures are we performing well on vs. need improvement?"
🩺 Clinical Analytics
- "What's the prevalence of chronic conditions in our population?"
- "Show me diabetes prevalence rates and patient counts"
- "Analyze 30-day readmission rates by condition category"
- "What are the readmission patterns for heart failure patients?"
🎯 Risk Adjustment & HCC
- "Calculate HCC risk scores for our patient population"
- "Show me risk score distribution and identify high-risk patients"
- "Who are the patients with the highest risk adjustment scores?"
🔍 Care Management
- "Identify patients for case management based on high costs and readmissions"
- "Which patients have both high costs and multiple chronic conditions?"
- "Show me patients with diabetes who also have high utilization"
📅 Trend Analysis
- "Compare January 2018 PMPM costs to December 2018"
- "Show me quarterly utilization trends throughout 2018"
- "How did our quality measures change over the year?"
🏢 Business Intelligence
- "Generate a comprehensive population health report for 2018"
- "What insights can you provide about our highest cost drivers?"
- "Summarize our value-based care performance metrics"
- "Create an executive summary of our healthcare analytics"
These questions will automatically trigger the appropriate MCP tools and return structured healthcare analytics data that can be used for reporting, decision-making, and care management.
Development
Publishing Docker Image
To make the Docker image available for users:
- Push to GitHub:
git add .
git commit -m "Add MCP healthcare data server"
git push origin main
-
GitHub Actions will automatically:
- Build the Docker image
- Push to GitHub Container Registry (GHCR)
- Make it available at
ghcr.io/yourusername/mcp_healthcare_data:latest
-
Check the Actions tab in your GitHub repo to monitor the build progress.
-
Once published, users can pull the image:
docker pull ghcr.io/yourusername/mcp_healthcare_data:latest
Local Testing
# Test the Docker build locally
./scripts/test-docker.sh
# Test basic functionality (requires credentials)
python -c "
import healthcare_mcp_server as hms
print('Testing connection...')
result = hms.get_patient_demographics()
print(f'Found {result[\"total_patients\"]} patients')
"
Adding New Tools
To add new healthcare analytics tools:
- Create a new function with the
@mcp.tool()decorator - Add proper type hints and documentation
- Use the
execute_query()helper for BigQuery operations - Return structured data as dictionaries
Example:
@mcp.tool()
def get_medication_adherence(
therapeutic_class: str,
year: str = "2018"
) -> Dict[str, Any]:
"""
Calculate medication adherence rates for a therapeutic class.
Args:
therapeutic_class: Medication therapeutic class
year: Analysis year
Returns:
Dictionary with adherence metrics
"""
query = f"""
SELECT
COUNT(DISTINCT person_id) as total_patients,
AVG(pdc_score) as avg_adherence_rate
FROM `{DATASET_PREFIX}pharmacy.adherence_scores`
WHERE therapeutic_class = '{therapeutic_class}'
AND measurement_year = {year}
"""
df = execute_query(query)
return df.iloc[0].to_dict()
Troubleshooting
Common Issues
- Authentication Errors: Ensure your service account key path is correct in
.env - Dataset Not Found: Verify your
BIGQUERY_DATASET_PREFIXmatches your data location - Permission Denied: Confirm your service account has BigQuery viewer/user roles
- Python Version Errors: Ensure you're using Python 3.9+ (pandas 2.2.2 and numpy 1.26.4 require 3.9+)
- Import Errors: Ensure all dependencies are installed with
uv pip install -r requirements.txt - Docker Issues: Check that Docker is running and you have sufficient disk space
Docker Troubleshooting
"denied" error when pulling from GHCR:
docker: Error response from daemon: Head "https://ghcr.io/v2/username/mcp_healthcare_data/manifests/latest": denied.
This means:
- The image hasn't been published yet (push to GitHub to trigger build)
- The repository is private (make it public or authenticate)
- Wrong username/repository name in the image URL
Other Docker issues:
# Build and test locally
./scripts/test-docker.sh
# View container logs
docker logs <container-name>
# Debug inside container
docker exec -it <container-name> bash
# Check if image exists
docker pull ghcr.io/username/mcp_healthcare_data:latest
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。