Healthcare Clinic MCP Server
Exposes appointment scheduling and insurance claims data as MCP tools, allowing AI clients to query and update clinic records via a standard protocol.
README
Healthcare Clinic MCP Server
An MCP (Model Context Protocol) server that exposes appointment scheduling and insurance claims data as standardized tools -- so any MCP-compatible AI client (Claude Desktop, Claude Code, or a custom agent) can query and update clinic data without a one-off, hand-rolled integration.
Why this project
Most AI-agent portfolios show agents that talk. Very few show the infrastructure layer that lets agents act on real systems in a standardized way. MCP is the emerging protocol for exactly that -- this project demonstrates building the server side of it, which is a comparatively rare skill in most AI engineering portfolios right now.
This server exposes the same kind of data an insurance-claims agent (see
the separate insurance-claims-agent project in this portfolio) would
need to call in a real deployment -- scheduling and claims records --
through a protocol any agent can plug into, instead of custom code per
integration.
What it exposes
Appointment tools
get_appointment(appointment_id)-- look up one appointmentlist_appointments_for_patient(patient_name)-- all appointments for a patientcreate_appointment(...)-- book a new appointment
Claims tools
check_claim_status(claim_id)-- look up one claim's statuslist_claims_for_patient(patient_name)-- all claims for a patientcreate_claim(...)-- submit a new claim record
All data lives in a local SQLite database (clinic.db), which stands in
for a real practice-management/EHR system. In a production deployment,
these same tool functions would call a real database or API instead.
Tech stack
| Component | Tool | Why |
|---|---|---|
| Protocol | MCP Python SDK (stable v1.x) | Official SDK; v2 is a breaking-change beta as of writing -- see note below |
| Data | SQLite | Simple, no setup, good stand-in for a real EHR/PM system |
Version note: The MCP Python SDK is mid-migration to a v2 with
breaking protocol changes (targeted stable release 2026-07-28). This
project pins mcp<2 deliberately so it keeps working. Check
the SDK's release notes
before upgrading.
Setup
1. Install dependencies
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install -r requirements.txt
2. Create the demo database
python database.py
This creates clinic.db with a few synthetic appointments and claims
(no real patient data).
3. Test it with the MCP Inspector (visual, no client needed)
mcp dev server.py
This opens a browser-based inspector where you can call each tool directly and see the request/response -- the fastest way to demo this project without needing Claude Desktop installed.
4. Install it into Claude Desktop (optional)
mcp install server.py --name "Healthcare Clinic Tools"
Restart Claude Desktop, and you'll be able to ask Claude things like "What's the status of claim CLM-2002?" and it will call the tool directly.
Example tool calls
check_claim_status("CLM-2002")
# -> {"claim_id": "CLM-2002", "patient_name": "Jordan Reyes",
# "cpt_code": "73721", "icd10_code": "M25.561",
# "status": "under_review", "submitted_date": "2026-07-10"}
list_appointments_for_patient("Jordan")
# -> [{"appointment_id": "APT-001", "patient_name": "Jordan Reyes", ...}]
What I'd improve next
- Add write-conflict handling for concurrent appointment bookings
- Add MCP Resources (not just Tools) to expose read-only clinic policy documents alongside the live data
- Swap SQLite for a real practice-management system's API in a production deployment
Disclaimer
All data in database.py is synthetic and created for demonstration
purposes only. No real patient data is used or stored anywhere in this
project.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.