drio
Open app

Agent Care: An MCP Server for EMRs like Cerner and Epic

Source

MCP Server for EMRs with FHIR

Catalog onlyCatalog onlySTDIO

Overview

Agent Care is a Model Context Protocol (MCP) server designed for Electronic Medical Records (EMRs) like Cerner and Epic, providing healthcare tools and prompts for interacting with FHIR data and medical resources.

To use Agent Care, set up the server locally by cloning the repository, installing dependencies, and configuring the necessary API keys for EMR integration. You can then interact with the server using various FHIR tools and medical research tools.

  • EMR integration using SMART on FHIR APIs - OAuth2 authentication with EMRs - Integration with Anthropic Claude Desktop - Access to medical research resources (PubMed, Clinical Trials, FDA) - Comprehensive clinical analysis and response caching
  1. Accessing patient data from EMRs like Cerner and Epic.
  2. Conducting medical research by querying PubMed and clinical trials.
  3. Analyzing patient conditions and medications through FHIR tools.

Add to your AI client

Use these steps to connect Agent Care: An MCP Server for EMRs like Cerner and Epic in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "agentcare-mcp-kartha-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-agentcare-mcp-kartha-ai"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "agentcare-mcp-kartha-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-agentcare-mcp-kartha-ai"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "agentcare-mcp-kartha-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-agentcare-mcp-kartha-ai"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "agentcare-mcp-kartha-ai": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-agentcare-mcp-kartha-ai"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "agentcare-mcp-kartha-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-agentcare-mcp-kartha-ai"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "agentcare-mcp-kartha-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-agentcare-mcp-kartha-ai"
      ]
    }
  }
}

FAQ

What EMRs does Agent Care support?

Agent Care supports EMRs like Cerner and Epic through FHIR APIs.

Is there a demo available?

Yes! A demo video is available on the project page.

How do I set up the server?

Follow the setup instructions in the documentation, including creating API keys and configuring environment variables.