What is the io.github.pcmedsinge/mcp-fhir MCP server?
FHIR R4 read/search/validate MCP server — US Core/IPS profiles, SMART-on-FHIR auth (Epic/Cerner).
How to install io.github.pcmedsinge/mcp-fhir
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
FHIR_BASE_URLBase URL of the FHIR R4 server (default: https://hapi.fhir.org/baseR4)
SMART_ENABLEDSet to 'true' to enable SMART-on-FHIR OAuth 2.0 (Epic/Cerner)
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-fhir": {
"command": "uvx",
"args": [
"mcp-fhir"
],
"env": {
"FHIR_BASE_URL": "<YOUR_FHIR_BASE_URL>",
"SMART_ENABLED": "<YOUR_SMART_ENABLED>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"mcp-fhir": {
"command": "uvx",
"args": [
"mcp-fhir"
],
"env": {
"FHIR_BASE_URL": "<YOUR_FHIR_BASE_URL>",
"SMART_ENABLED": "<YOUR_SMART_ENABLED>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-fhir": {
"command": "uvx",
"args": [
"mcp-fhir"
],
"env": {
"FHIR_BASE_URL": "<YOUR_FHIR_BASE_URL>",
"SMART_ENABLED": "<YOUR_SMART_ENABLED>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"mcp-fhir": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-fhir"
],
"env": {
"FHIR_BASE_URL": "<YOUR_FHIR_BASE_URL>",
"SMART_ENABLED": "<YOUR_SMART_ENABLED>"
}
}
}
}Claude Code
claude mcp add mcp-fhir --env FHIR_BASE_URL=<YOUR_FHIR_BASE_URL> --env SMART_ENABLED=<YOUR_SMART_ENABLED> -- uvx mcp-fhirRelated MCP servers
Drug interactions (FDA), dose range check, allergy cross-reactivity. No PHI processed.
View repository →LOINC/SNOMED CT/RxNorm/ICD-10 lookup, search, translation and ValueSet expansion via FHIR.
View repository →