Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
FHIR MCP server for agent access to healthcare data
This server exposes FHIR resources through MCP so an agent can query and update clinical records with tools instead of raw API calls. It also adds document ingestion and semantic search through Pinecone, plus LOINC code lookup for lab and observation work.
Builders who want an MCP client to work with FHIR records, documents, and lab terminology.
You can ask an agent to read, search, and update FHIR data without wiring each API call yourself.
What it does
FHIR resource tools
Provides CRUD tools for Patient, Observation, Condition, Medication, Immunization, Encounter, AllergyIntolerance, FamilyMemberHistory, and generic FHIR resources.
Document ingestion and search
Adds tools to ingest TXT, CSV, JSON, and PDF files into Pinecone and search them with embeddings.
LOINC lookup
Returns standardized LOINC codes for observations and lab tests.
OAuth2-backed access
Handles FHIR server authentication with OAuth2 and encrypted configuration values.
Docker and uv startup
Runs as a container or through `uv` for local MCP client setups.
How to get it
- 1Clone the repository
git clone https://github.com/the-momentum/fhir-mcp-server cd fhir-mcp-server
- 2Set up environment variables
cp config/.env.example config/.env
- 3For Docker-based execution run
make build
- 4For uv-based execution run
make uv
- 5Windows
(Get-Command uv).Path
- 6MacOS/Linux
which uv
README
FHIR MCP Server
Model Context Protocol (MCP) Server for Fast Healthcare Interoperability Resources (FHIR)
๐ Table of Contents
- ๐ About
- ๐ก Demo
- ๐ Getting Started
- ๐ Usage
- ๐ง Configuration
- ๐ณ Docker Setup
- ๐ ๏ธ MCP Tools
- ๐บ๏ธ Roadmap
- ๐ฅ Contributors
- ๐ License
๐ About The Project
FHIR MCP Server implements a complete Model Context Protocol (MCP) server, designed to facilitate seamless interaction between LLM-based agents and a FHIR-compliant backend. It provides a standardized interface that enables full CRUD operations on FHIR resources through a comprehensive suite of tools - accessible from MCP-compatible clients such as Claude Desktop, allowing users to query and manipulate clinical data using natural-language prompts.
โจ Key Features
- ๐ FastMCP Framework: Built on FastMCP for high-performance MCP server capabilities
- ๐ฅ FHIR Resource Management: Full CRUD operations for all major FHIR resources
- ๐ Intelligent Document Processing: AI-powered document ingestion and chunking for multiple formats including TXT, CSV, JSON, and PDF
- ๐ Semantic Search: Advanced document search using vector embeddings (via Pinecone)
- ๐ง RAG-Ready: Retrieval-Augmented Generation pipeline with context-aware document queries
- ๐ Secure Authentication: OAuth2 token management for FHIR API integration
- ๐ LOINC Integration: Standardized medical terminology lookup and validation
- ๐ณ Container Ready: Docker support for easy deployment and scaling
- ๐ง Configurable: Extensive
.env-based configuration options
๐๏ธ Architecture
The server is built with a modular architecture:
- MCP Tools: Dedicated tools for selected FHIR resource types, with others handled by a generic tool
- Fhir Server Client: Handles FHIR API communication and authentication (OAuth2 and more planned)
- RAG Services: Embedding-based document processing and semantic retrieval
- Vector Store: Pinecone integration for similarity-based search
- LOINC Client: Integration with LOINC API for terminology resolution and validation
๐ก Demo
This demo shows how Claude uses the fhir-mcp-server to communicate with a FHIR server (in this case Medplum) to answer questions. You will see, among other things:
- utilization of the
request_patient_resourcetool which retrieves basic patient information - utilization of the
request_condition_resourcetool to answer the question whether any of the previously diagnosed diseases may cause symptoms that the patient is currently complaining about - utilization of the
request_medication_resource,request_encounter_resource,request_generic_resourcetools to answer the question whether the patient has already received any treatment for hypertension
You can observe how Claude automatically selects the tools worth using to answer the question based on the user's query.
https://github.com/user-attachments/assets/3a3a8ed3-f881-447d-af03-5f24432a2cdd
Lab History Analysis
Here you can observe how Claude first uses the tool searching for LOINC codes for the lipid panel specific codes, but not finding any related observations in FHIR server, it repeats the search for individual biomarkers that make up such a panel.
https://github.com/user-attachments/assets/2fb39801-d5d6-4461-bedd-9f58ab4d52ec
FHIR Synthetic Data Generator
Developers working with FHIR often need to generate specific test data to validate FHIR server functionality, such as search capabilities and data relationships. While you can use Synthea to generate synthetic data and then manually import the resulting bundles to your server, fhir-mcp-server streamlines this process by allowing you to generate and deploy test data directly through Claude.
This eliminates the typical workflow of running synthea separately, downloading bundles, and manually importing them to your FHIR server. Instead, you can create targeted test scenarios, generate appropriate synthetic data, and populate your server all within Claude's interface.
https://github.com/user-attachments/assets/d87da1d8-6401-4a9e-a6f0-50ba23396e12
Note: fhir-mcp-server was not designed with this use case in mind, so as you'll see in the demo, it doesn't work perfectly - what can be observed, however, is how well the LLM handles using trial and error to correct any wrong choices.
๐ Getting Started
Follow these steps to set up FHIR MCP Server in your environment.
Prerequisites
-
Docker (recommended) or uv: For dependency management
-
FHIR Server Account: Access to FHIR API (e.g. Medplum)
-
Pinecone API key (required for document search): Enables vector-based search over processed documents. Without it, semantic retrieval features will be unavailable.
-
LOINC Account (optional): Enables retrieval of the latest LOINC codes from the official API. Without it, the system relies on static or language model-inferred codes, which may be outdated or imprecise.
Installation & Setup
-
Clone the repository:
git clone https://github.com/the-momentum/fhir-mcp-server cd fhir-mcp-server -
Set up environment variables:
cp config/.env.example config/.envEdit the
config/.envfile with your credentials and configuration. See Environment Variables -
Install Dependencies
For Docker-based execution run:
make buildFor uv-based execution run:
make uv -
Update the MCP Client configuration
e.g. Claude Desktop -> edit
claude_desktop_config.json
-
Docker
{ "mcpServers": { "docker-mcp-server": { "command": "docker", "args": [ "run", "-i", "--rm", "--init", "--name", "fhir-mcp-server", "--mount", // optional - volume for reload "type=bind,source=<your-project-path>/app,target=/root_project/app", // optional - volume for reload "--mount", "type=bind,source=<your-project-path>/config/.env,target=/root_project/config/.env", "-e", "TRANSPORT_MODE=stdio", // Set transport mode: stdio, http, or https "mcp-server:latest" ] } } }Make sure to replace
<your-project-path>with the actual path to your installation -
uv
Firstly, get uv path from terminal:
-
Windows:
(Get-Command uv).Path -
MacOS/Linux:
which uv
Then, update config file:
{ "mcpServers": { "uv-mcp-server": { "command": "uv", "args": [ "run", "--frozen", "--directory", "<your-project-path>", "start" ], "env": { "PATH": "<uv-bin-folder-path>" } } } }Make sure to replace with the actual uv path (to bin folder)
-
-
Restart MCP Client
After completing all of the above steps, restart the MCP Client to apply the changes. In some cases, you may need to terminate all related processes using Task Manager or your system's process manager. This ensures that:
- The updated configuration is properly loaded
- Environment variables are correctly applied
- The FHIR MCP client initializes with the correct settings
๐ง Configuration
๐ Security & Encryption
The FHIR MCP Server includes built-in encryption infrastructure to protect sensitive configuration values. Sensitive fields like API keys and passwords are automatically encrypted and decrypted at runtime.
You are allowed to store passwords as a plain text, but if you want to have them encrypted, follow the instruction below.
Setting Up Encryption
Automated Setup (Recommended)
For most users, use the automated setup script:
# uv method
uv run scripts/cryptography/setup_encryption.py
# docker method
docker exec fhir-mcp-server uv run scripts/cryptography/setup_encryption.py
This script will:
- Check for
MASTER_KEYinconfig/.envand generate one if needed - Automatically encrypt all sensitive values (
LOINC_PASSWORD,FHIR_SERVER_CLIENT_SECRET,PINECONE_API_KEY) - Update your
.envfile with encrypted values - Skip empty variables and already encrypted values
Manual Setup
-
Generate a Master Key:
# uv method uv run scripts/cryptography/generate_master_key.py # docker method docker exec fhir-mcp-server uv run scripts/cryptography/generate_master_key.pyPut that key as a MASTER_KEY environment variable in .env.
-
Encrypt Sensitive Values:
# uv method uv run scripts/cryptography/encrypt_setting.py "your_secret_value" # docker method docker exec fhir-mcp-server uv run scripts/cryptography/encrypt_setting.py "your_secret_value" -
Decrypt Values (for verification):
# uv method uv run scripts/cryptography/decrypt_setting.py "encrypted_value" # docker method docker exec fhir-mcp-server uv run scripts/cryptography/decrypt_setting.py "encrypted_value"
Encrypted Configuration Fields
The following fields are automatically encrypted when using EncryptedField:
FHIR_SERVER_CLIENT_SECRET- OAuth2 client secret for FHIR serverLOINC_PASSWORD- LOINC account passwordPINECONE_API_KEY- Pinecone API key for vector search
Environment Variables
| Variable | Description | Example Value | Encryption |
|---|---|---|---|
| MASTER_KEY | Master encryption key | gAAAAABl... | Required |
| FHIR_SERVER_HOST | FHIR API host URL | https://api.medplum.com | No |
| FHIR_BASE_URL | FHIR base path | /fhir/R4 | No |
| FHIR_SERVER_CLIENT_ID | OAuth2 client ID for FHIR | 019720e7... | No |
| FHIR_SERVER_CLIENT_SECRET | OAuth2 client secret for FHIR | gAAAAABl... | Yes |
| LOINC_ENDPOINT | LOINC API search endpoint | https://loinc.regenstrief.org/searchapi/loincs | No |
| LOINC_USERNAME | LOINC account username | loinc-user | No |
| LOINC_PASSWORD | LOINC account password | gAAAAABl... | Yes |
| PINECONE_API_KEY | Pinecone API key | gAAAAABl... | Yes |
| EMBEDDING_MODEL | Hugging Face embedding model name | NeuML/pubmedbert-base-embeddings | No |
๐ ๏ธ MCP Tools
The FHIR MCP Server provides a comprehensive set of tools for interacting with FHIR resources and document management:
FHIR Resource Tools
| Tool | Resource Type | Description |
|---|---|---|
request_patient_resource | Patient | Manage patient demographic and administrative information |
request_observation_resource | Observation | Handle clinical measurements and assessments |
request_condition_resource | Condition | Manage patient problems and diagnoses |
request_medication_resource | Medication | Handle medication information and orders |
request_immunization_resource | Immunization | Manage vaccination records |
request_encounter_resource | Encounter | Handle patient visits and interactions |
request_allergy_intolerance_resource | AllergyIntolerance | Manage patient allergy information |
request_family_member_history_resource | FamilyMemberHistory | Handle family health history |
request_generic_resource | Any FHIR Resource | Operate on any FHIR resource not covered by specific tools |
Document Management Tools
| Tool | Description |
|---|---|
request_document_reference_resource | Manage FHIR DocumentReference resources |
add_document_to_pinecone | Ingests documents into the vector database for semantic search |
search_pinecone | Performs semantic search across indexed documents using vector embeddings |
LOINC Terminology Tools
| Tool | Description |
|---|---|
get_loinc_codes | Retrieves standardized LOINC codes for medical observations and laboratory tests |
Tool Features
- Full Resource Management: All FHIR resource tools support Create, Read, Update, and Delete operations
- Data Validation: Tools enforce FHIR resource validation and prevent data corruption
- Error Handling: Comprehensive error responses with detailed failure information
- Security: OAuth2 authentication and proper access control for all operations
- Semantic Search: AI-powered document search using vector embeddings
- Multi-format Support: Document ingestion supports TXT, PDF, CSV, and JSON formats
๐บ๏ธ Roadmap
We're continuously enhancing FHIR MCP Server with new capabilities. Here's what's on the horizon:
- Extended Authentication Options: In addition to OAuth2 (already supported), we plan to add support for other authentication methods for connecting to FHIR servers
- Expanded File Format Support for RAG: Extend document ingestion capabilities to support additional formats
- Table-Aware Document Chunking: Improve the document chunking pipeline by detecting tables in documents and treating them as separate, atomic chunks.
- OCR Support for Scanned Documents: Implement Optical Character Recognition capabilities to enable extraction of text from scanned PDFs and image files before chunking and indexing
Have a suggestion? We'd love to hear from you! Contact us or contribute directly.
๐ฅ Contributors
๐ License
Distributed under the MIT License. See MIT License for more information.
Built with โค๏ธ by Momentum โข Transforming healthcare data management with AI
Files in the repo
- .github
- app
- config
- scripts
- tests
- .dockerignore
- .gitignore
- .pre-commit-config.yaml
- .python-version
- docker-compose.yml
- Dockerfile
- LICENSE
- logging.conf
- Makefile
- pyproject.toml
- README.md
- start.py
- uv.lock
Discussion (0)
Ask about usage, or say what you built with itSign in to join the discussion.
No comments yet. Be the first to say what this is good for.
More connectors
High-performance code intelligence MCP server. Indexes codebases into a persistent knowledge graph โ average repo in milliseconds. 158 languages, sub-ms queries, 99% fewer tokens. Single static binary, zero dependencies.

Universal provider proxy for OpenAI Codex & Claude Code โ use any LLM (Claude, Gemini, Grok, DeepSeek, Ollamaโฆ) with Codex CLI, App, SDK, and Claude Code
Git-native persistent memory for AI coding agents. Implements Google OKF v0.2 with sub-300ยตs in-memory BM25 search, embedded MCP server, and progressive disclosure. Slashes token bloat by 80% with zero external databases or dependencies. Built in pure Go.
Stop your AI from making things up โ it proposes, deterministic tools decide, every claim checked against ground truth with evidence. Grounded facts and context survive resets. Reverse engineering is the proving ground. MCP server + CLI.
20 MB lightweight cross-platform database client for 90+ databases, including MySQL, PostgreSQL, SQLite, Redis, MongoDB, DuckDB, SQL Server, and Dameng. Built-in AI, MCP Server, CLI, desktop and Docker. | ่ฝป้็บง่ทจๅนณๅฐๆฐๆฎๅบ็ฎก็ๅทฅๅ ท๏ผๆฏๆ MySQLใPostgreSQLใSQLiteใRedisใMongoDBใ่พพๆขฆ็ญ 90+ ๆฐๆฎๅบ๏ผๆไพๆก้ข็ซฏใDockerใCLIใๅ ็ฝฎ AI ๅฉๆๅ MCP Serverใ