medplum-mcp
Provides access to Medplum FHIR healthcare data, enabling Claude and other MCP clients to read, search, and query FHIR resources from one or more Medplum environments.
README
@ncodeuy/medplum-mcp
A Model Context Protocol (MCP) server that provides access to Medplum FHIR healthcare data. It enables Claude and other MCP clients to read, search, and query FHIR resources from one or more Medplum environments.
Features
- Multi-environment support — connect to multiple Medplum projects (e.g. dev, staging, production) and switch between them per request
- 30 FHIR resource types — Patient, Practitioner, Observation, Condition, MedicationRequest, and more
- Search with parameters — query resources using standard FHIR search parameters
- Resource history — view version history of any resource with pagination
Tools
The server exposes 5 MCP tools:
| Tool | Description |
|---|---|
fhir_get_environments |
List available Medplum environments and the default |
fhir_get_resource_types |
List supported FHIR resource types and their search parameters |
fhir_read |
Read a single FHIR resource by type and ID |
fhir_search |
Search for FHIR resources with query parameters |
fhir_read_history |
Get version history of a resource |
Setup
Install
npm install @ncodeuy/medplum-mcp
Configure
Set one environment variable per field, using the pattern MEDPLUM_PROJECT_<NAME>_<FIELD>:
# Required
MEDPLUM_PROJECT_STAGING_CLIENT_ID=staging-client-id
MEDPLUM_PROJECT_STAGING_CLIENT_SECRET=staging-secret
# Optional (defaults to https://api.medplum.com/)
MEDPLUM_PROJECT_STAGING_BASE_URL=https://staging.example.com/
MEDPLUM_PROJECT_STAGING_PROJECT_ID=proj-staging
# Add more projects by changing the name segment
MEDPLUM_PROJECT_PRODUCTION_CLIENT_ID=prod-client-id
MEDPLUM_PROJECT_PRODUCTION_CLIENT_SECRET=prod-secret
# Optional — defaults to the first project found
MEDPLUM_DEFAULT_PROJECT=staging
<details> <summary>Alternative: JSON configuration</summary>
You can also use the MEDPLUM_PROJECTS environment variable with a JSON object:
MEDPLUM_PROJECTS='{
"staging": {
"baseUrl": "https://staging.example.com/",
"clientId": "staging-client-id",
"clientSecret": "staging-secret",
"projectId": "proj-staging"
},
"production": {
"clientId": "prod-client-id",
"clientSecret": "prod-secret"
}
}'
Flat env vars take priority when both are set.
</details>
Use with Claude Desktop
Add the server to your Claude Desktop configuration (claude_desktop_config.json):
{
"mcpServers": {
"medplum": {
"command": "npx",
"args": ["@ncodeuy/medplum-mcp"],
"env": {
"MEDPLUM_PROJECT_DEFAULT_CLIENT_ID": "your-client-id",
"MEDPLUM_PROJECT_DEFAULT_CLIENT_SECRET": "your-client-secret"
}
}
}
}
Use with Claude Code
Add the server to your Claude Code MCP settings:
claude mcp add medplum \
-e MEDPLUM_PROJECT_DEFAULT_CLIENT_ID=your-client-id \
-e MEDPLUM_PROJECT_DEFAULT_CLIENT_SECRET=your-client-secret \
-- npx @ncodeuy/medplum-mcp
Development
# Install dependencies
npm install
# Type check
npm run typecheck
# Run tests
npm test
# Build
npm run build
# Run the server locally
node ./dist/index.js
License
ISC
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.