Natural language healthcare queries
## FHIR Healthcare MCP Server: Healthcare Data Interoperability The **FHIR Healthcare MCP Server** integrates HL7 FHIR healthcare data standard into Google Antigravity, enabling AI-assisted access to healthcare records, patient data, and clinical resources through standardized APIs. ### Why FHIR MCP? - **Standard Compliance**: Full HL7 FHIR R4 standard support for healthcare interoperability - **Patient Records**: Access patient demographics, conditions, medications, and encounters - **Clinical Resources**: Query observations, diagnostic reports, and care plans - **Secure Access**: OAuth2 authentication with SMART on FHIR security - **Multi-System**: Connect to any FHIR-compliant healthcare system ### Key Features #### 1. Patient Data ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Retrieve patient demographics and active conditions from FHIR server" }] ) ``` #### 2. Medication Records ```python # Access medications response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get current medication list and prescription history for patient" }] ) ``` #### 3. Lab Results ```python # Query labs response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Retrieve recent laboratory results and flag abnormal values" }] ) ``` #### 4. Clinical Documents ```python # Access documents response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get discharge summaries and clinical notes from encounters" }] ) ``` ### Configuration ```json { "mcpServers": { "fhir": { "command": "npx", "args": ["-y", "@anthropic/mcp-server-fhir"], "env": { "FHIR_BASE_URL": "https://fhir.example.com/r4", "FHIR_CLIENT_ID": "your-client-id", "FHIR_CLIENT_SECRET": "your-client-secret" } } } } ``` ### Use Cases **EHR Integration**: Access electronic health records through standard APIs. **Clinical Analytics**: Analyze patient data for clinical insights. **Care Coordination**: Support care coordination with comprehensive patient views. **Healthcare Apps**: Build FHIR-compliant healthcare applications. The FHIR MCP Server brings healthcare data interoperability into your workflow.
{
"mcpServers": {
"fhir": {
"mcpServers": {
"fhir": {
"env": {
"FHIR_SERVER_BASE_URL": "https://fhir-server.com"
},
"args": [
"fhir-mcp-server"
],
"command": "uvx"
}
}
}
}
}