Eka Care's Model Context Protocol (MCP) server facilitates interaction with medical knowledge-bases specifically curated for the Indian healthcare context. While advanced models from Claude, OpenAI, and others can perform adequately in medical contexts, their responses often lack grounding in factual information and published references. Additionally, India faces a significant challenge with the absence of centralized repositories for branded medications in the public domain.
The Eka MCP Server addresses these challenges by providing structured access to curated knowledge-bases through specialized tools:
Key Benefits:
[!NOTE]
To obtain theclient-id
, andclient-token
reach out to us on ekaconnect@eka.care
Install UV - https://docs.astral.sh/uv/getting-started/installation/#installation-methods
Install Claude desktop application - https://claude.ai/download
Locate the configuration file:
~/Library/Application\ Support/Claude/claude_desktop_config.json
%APPDATA%/Claude/claude_desktop_config.json
In case the file does not exist, create a new file named claude_desktop_config.json
in the above directory.
Modify/Create the configuration file with the following settings:
{
"mcpServers": {
"eka-mcp-server": {
"command": "uvx",
"args": [
"eka_mcp_server",
"--eka-api-host",
"https://api.eka.care",
"--client-id",
"<client_id>",
"--client-secret",
"<client_secret>"
]
}
}
}
<client_id>
: Your client ID<client_secret>
: Your client secretSince MCP servers run over stdio, debugging can be challenging. For the best debugging experience, we recommend using the MCP Inspector.
You can launch the MCP Inspector via npm
with this command:
npx @modelcontextprotocol/inspector uvx eka_mcp_server --eka-api-host https://api.eka.care --client-id <client_id> --client-secret <client_secret>
Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.
This commonly happens when uvx is not installed or the command cannot be discovered.
curl -LsSf https://astral.sh/uv/install.sh | sh
which uvx
The output might be something like this
> /opt/homebrew/bin/uvx
In your config, update the command to the full path of the uvx
executable. For example:
{
"mcpServers": {
"eka-mcp-server": {
"command": "/opt/homebrew/bin/uvx",
"args": [
"eka_mcp_server",
"--eka-api-host",
"https://api.eka.care",
"--client-id",
"<client_id>",
"--client-secret",
"<client_secret>"
]
}
}
}
Run the command below in case the latest version is not being picked. This cleans up the local cache and fetches the latest version.
uv cache clean eka_mcp_server
EKA MCP server tools are curated by the in-house doctors at eka.care and have been validated on an internal set of questionnaire
Access comprehensive information about drugs from a corpus of drugs based on the drug name or generic composition and filtered further through the drug form and volume.
APIs required for this tool
Standardized guidelines, procedures, and decision pathways for healthcare professionals are published by medical bodies. They serve as comprehensive roadmaps for clinical care, ensuring consistent and evidence-based treatment approaches.
Current Coverage:
APIs required for this tool
The Eka MCP Server provides access to medical knowledge bases and drug information intended to support healthcare professionals in India. While we strive for accuracy and reliability, please note:
Eka Care assumes no liability for any errors, omissions, or outcomes resulting from the use of information provided through this service.
Please report any issues or bugs on the GitHub issue tracker.
Q: Can I use this without an eka.care account?
A: No, you need valid API credentials from eka.care to access the medical information.
Q: Is this service free?
A: While the MCP server code is open-source, access to eka.care's APIs requires valid credentials. For the initial few days, we are offering free access to the APIs. However, we will be charging for the API usage in the future.
Q: Which LLMs support MCP natively?
A: Currently, Anthropic's Claude models have native MCP support and also Cursor and Windsurf applications.
{
"mcpServers": {
"eka-mcp-server": {
"env": {},
"args": [
"eka_mcp_server",
"--eka-api-host",
"https://api.eka.care",
"--client-id",
"<client_id>",
"--client-secret",
"<client_secret>"
],
"command": "uvx"
}
}
}
Seamless access to top MCP servers powering the future of AI integration.