Overview
Eka MCP Server is a healthcare-focused AI tool designed to provide medical professionals with real-time access to verified medical information, reducing the risk of misinformation during patient treatment.
To use the Eka MCP Server, healthcare professionals must obtain a developer key from eka.care, install the necessary software, and configure the server with their API credentials.
- Grounding AI responses in curated medical data from eka.care. - Tools validated by in-house doctors for accuracy. - Secure access to real-time medication data and treatment protocols. - Part of the open MCP ecosystem for seamless integration.
- Providing accurate medication information to healthcare providers.
- Checking for potential drug interactions during patient care.
- Accessing standardized treatment protocols for various medical conditions.
Add to your AI client
Use these steps to connect Eka MCP Server 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": {
"eka-mcp-server-eka-care": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-eka-mcp-server-eka-care"
]
}
}
}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": {
"eka-mcp-server-eka-care": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-eka-mcp-server-eka-care"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"eka-mcp-server-eka-care": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-eka-mcp-server-eka-care"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"eka-mcp-server-eka-care": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-eka-mcp-server-eka-care"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"eka-mcp-server-eka-care": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-eka-mcp-server-eka-care"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"eka-mcp-server-eka-care": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-eka-mcp-server-eka-care"
]
}
}
}FAQ
Can I use this without an eka.care account?
No, valid API credentials from eka.care are required to access the medical information.
Is this service free?
The MCP server code is open-source, but access to eka.care's APIs requires valid credentials.
Which LLMs support MCP natively?
Currently, Anthropic's Claude models have native MCP support.