MCP Server Healthcare
MCP Server Healthcare
Un servidor de Model Context Protocol (MCP) para un flujo de trabajo de codificación clínica del NHS: sugerir códigos ICD-10-CM/OPCS-4/HCC para una nota clínica, realizar un seguimiento de las solicitudes de gobernanza de la información SAR/FOI, ejecutar solicitudes del repositorio de mapeo DSAR a través de clasificación y revisión clínica, codificación por lotes y lectura/escritura de datos de pacientes a través de un sandbox de Cerner FHIR R4.
Cualquier cliente MCP (Claude Desktop, Claude Code, el conector MCP de Copilot Studio, etc.) puede llamar a estas herramientas directamente: no se requiere una capa de API REST.
Originalmente construido como parte de bobbynoble/clinical-coding-bot; este repositorio es el servidor MCP independiente, con su propia copia de la lógica de negocio que envuelve, por lo que no tiene dependencia de ese repositorio.
Herramientas
Área | Herramientas |
Codificación clínica |
|
Seguimiento de SAR/FOI |
|
Repositorio de mapeo DSAR |
|
Codificación por lotes |
|
Sandbox de Cerner FHIR |
|
cerner_post_condition, cerner_post_procedure y cerner_writeback_episode realizan escrituras reales contra el entorno de Cerner que esté configurado (un sandbox de no producción por defecto; consulte app/fhir_cerner.py).
Related MCP server: fhir-synthetic-mcp
Configuración
pip install -r requirements.txt
cp .env.example .env # fill in Azure OpenAI / Search / Cerner credentials as neededCada herramienta se carga independientemente de qué credenciales estén configuradas, pero suggest_clinical_codes necesita Azure OpenAI + Azure AI Search configurados, y las herramientas cerner_* necesitan CERNER_CLIENT_ID/CERNER_CLIENT_SECRET; llamar a una sin las credenciales correspondientes falla con un error claro en lugar de bloquear el servidor.
Ejecución
Stdio (Claude Desktop, Claude Code, la mayoría de los clientes MCP locales):
python -m MCP_Server_HealthcareEjemplo de configuración de Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"clinical-coding-bot": {
"command": "python",
"args": ["-m", "MCP_Server_Healthcare"],
"cwd": "/absolute/path/to/mcp_server_healthcare"
}
}
}HTTP transmisible (acceso remoto, p. ej., desde Copilot Studio o un cliente MCP alojado):
python -m MCP_Server_Healthcare --transport http --port 8010El transporte HTTP requiere que CODING_API_KEY esté configurada en .env; cada solicitud debe llevar un encabezado X-API-Key correspondiente, o se rechaza con 401 (falla cerrada). Escucha en 127.0.0.1 por defecto; establezca MCP_HOST=0.0.0.0 (y colóquelo detrás de TLS/un proxy inverso) para exponerlo más allá de localhost.
Estructura del repositorio
MCP_Server_Healthcare/ the MCP server itself (server.py has the tool
definitions; __main__.py the stdio/http entry point;
auth.py the HTTP transport's API-key gate)
app/ business logic each tool wraps — coder.py (RAG
coding), sar_foi.py, dsar.py, batch.py,
fhir_cerner.py. Each stores its state in a SQLite
file created alongside it on first run.Notas
Las llamadas de red bloqueantes (Azure OpenAI/Search, Cerner FHIR) se descargan con
asyncio.to_threadpara que una llamada lenta no detenga otras llamadas de herramientas en el mismo servidor.Los archivos SQLite (
app/sar_foi.db,app/batch.db,app/dsar.db) se crean automáticamente en la primera ejecución y están en gitignore.
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
- AlicenseNot gradedqualityCmaintenanceA clean-room SHARP-on-MCP compliant FHIR R4 MCP server that enables AI agents to interact with any FHIR R4 endpoint using SHARP context headers, without server-side OAuth. It provides clinical tools, lab results, imaging, and interactive MCP-UI dashboards.MIT
- FlicenseAqualityBmaintenanceA learning MCP server providing synthetic FHIR patient data with read tools and a gated write workflow (propose → human approve → commit) with structured audit logging.10

LangCare MCP FHIR Serverofficial
AlicenseNot gradedqualityDmaintenanceEnterprise-grade MCP Server for FHIR-based EMRs. Enables AI agents to read, search, create, and update any FHIR R4 resource across major EHR systems like EPIC, Cerner, and OpenEMR.35853MIT- AlicenseNot gradedqualityCmaintenanceEnables AI applications to query and retrieve healthcare data (patients, conditions, observations, medications) from a public FHIR R4 server via MCP tools.MIT
Related MCP Connectors
Hosted MCP for denial, prior auth, reimbursement, workflow validation, batch scoring, and feedback.
UK NIHR (National Institute for Health and Care Research) open-data MCP.
Hosted MCP server exposing US hospital procedure cost data to AI assistants
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/bobbynoble/MCP_Server_Healthcare'
If you have feedback or need assistance with the MCP directory API, please join our Discord server