Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"eka-mcp-server": {
"args": [
"eka_mcp_server",
"--eka-api-host",
"https://api.eka.care",
"--client-id",
"<client_id>",
"--client-secret",
"<client_secret>"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
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.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'eka_mcp_server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked eka_mcp_server against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in health
MCP server providing seamless access to FHIR APIs for AI tools and healthcare applications
MCP server for the ClinicalTrials.gov v2 API. Search trials, retrieve study details and results, and match patients to eligible trials.
Manage your Hevy workouts, routines, folders, and exercise templates. Create and update sessions faster, organize plans, and search exercises to build workouts quickly. Stay synced with changes so your training log is always up to date.
MCP server for Oura Ring API v2 (sleep, activity, readiness, heart rate, workouts).
MCP Security Weekly
Get CVE alerts and security updates for Eka_mcp_server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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]
you can obtain theclient-id, andclient-tokenfrom https://console.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.jsonIn 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 executab