Skip to main content

The official Eka MCP Server for medical science tools curated by eka.care

Project description

Eka MCP Server

License: MIT PyPI - Version Downloads

Overview

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:

  • Indian Branded Drug Search: Enables lookup across 500,000+ branded drugs available in India, returning comprehensive metadata including generic composition and manufacturer information to enhance LLM responses.
  • Indian Treatment Protocol Search: Provides contextual access to over 180 treatment protocol documents published by authoritative Indian healthcare institutions such as ICMR and RSSDI.

Key Benefits:

  • 🩺 Medical Accuracy: Grounds AI responses in verified healthcare information
  • 🔄 Seamless Workflow: Provides critical information without requiring context switching
  • 🛡️ Reduced Hallucinations: Relies on curated medical data rather than AI's implicit general knowledge
  • 🌐 Open Ecosystem: Integrates with the growing MCP open standard

Get Started

Get your developer key from eka.care

[!NOTE]
To obtain the client-id, and client-token reach out to us on ekaconnect@eka.care

Installation and Setup for Claude Desktop

  1. Install UV - https://docs.astral.sh/uv/getting-started/installation/#installation-methods

  2. Install Claude desktop application - https://claude.ai/download

  3. Locate the configuration file:

    • macOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json
    • Windows: %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.

  4. 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>"
      ]
    }
  }
}
  1. Replace the placeholder values:
    • <client_id>: Your client ID
    • <client_secret>: Your client secret

Debugging

Since 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.

Troubleshooting common issues

spawn uvx ENOENT

This commonly happens when uvx is not installed or the command cannot be discovered. spawn uvx ENOENT screenshot

  1. Install uv through this command
curl -LsSf https://astral.sh/uv/install.sh | sh
  1. Find the path of our uvx installation
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>"
      ]
    } 
  }
}

Latest version of eka_mcp_server is not being picked?

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

Tools

EKA MCP server tools are curated by the in-house doctors at eka.care and have been validated on an internal set of questionnaire

Medications tool suite

Indian branded drug search

Tool definition here https://github.com/eka-care/eka_mcp_server/blob/9520c346e19c6ccafe80ca770dea9b824871ef1d/src/eka_mcp_server/constants.py#L1

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.

Indian branded drug search

APIs required for this tool

Indian Pharmacology details

Tool definition here

Get details of a generic composition based on the 2011 published guidelines by the National Formulary of India.

Indian treatment protocol search

Tool definition here https://github.com/eka-care/eka_mcp_server/blob/9520c346e19c6ccafe80ca770dea9b824871ef1d/src/eka_mcp_server/constants.py#L10

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:

  • 175 medical conditions/tags
  • 180 treatment protocols
  • Multiple authoritative publishers

Indian treatment protocol search workflow

  1. For any given query, the LLM has to decide if the tag is supported or not through this API. During the init of the tool, we fetch the supported conditions.
  2. Then, for the given tag, the LLM has to get the publishers that address that tag through this API.
  3. Finally, with the tag, publisher and query, we fetch the relevant information from the repository of publishers through this API.

APIs required for this tool

  1. http://developer.eka.care/api-reference/eka_mcp/protocols/tags
  2. http://developer.eka.care/api-reference/eka_mcp/protocols/publishers_by_tag
  3. http://developer.eka.care/api-reference/eka_mcp/protocols/search

Indian treatment protocol search

Accuracy Disclaimer

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:

  • The information provided through this service is for informational purposes only and does not constitute medical advice.
  • Healthcare professionals should exercise their own clinical judgment when using this information.
  • Drug information and treatment protocols may change over time, and we make reasonable efforts to keep our databases updated.
  • We cannot guarantee 100% accuracy or completeness of all information, particularly for newly approved medications or recently updated treatment guidelines.
  • Users should verify critical information through official sources before making clinical decisions.
  • Our database of protocols is ever growing, but does not ensure completeness.

Eka Care assumes no liability for any errors, omissions, or outcomes resulting from the use of information provided through this service.

Bugs and Issue Reporting

Please report any issues or bugs on the GitHub issue tracker.

FAQ

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

eka_mcp_server-0.3.1.tar.gz (2.0 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

eka_mcp_server-0.3.1-py3-none-any.whl (14.6 kB view details)

Uploaded Python 3

File details

Details for the file eka_mcp_server-0.3.1.tar.gz.

File metadata

  • Download URL: eka_mcp_server-0.3.1.tar.gz
  • Upload date:
  • Size: 2.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.2

File hashes

Hashes for eka_mcp_server-0.3.1.tar.gz
Algorithm Hash digest
SHA256 8f1c061128248ac992f6a8dcefffec8e9e2c0f9b9f2124556f494388c57dd6de
MD5 8674590341f1a19ea66e9360d7a0a202
BLAKE2b-256 0f8b016656a334a2cc2f18c3c247a38d850033044940bfcca775f465e034967e

See more details on using hashes here.

File details

Details for the file eka_mcp_server-0.3.1-py3-none-any.whl.

File metadata

File hashes

Hashes for eka_mcp_server-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1892ffb38887ef185cb60611548fedb3b771a2fad9c7d0f43b85aa8cd20d0081
MD5 8e4568d2cf1f2cfdea6dd80a3afc2734
BLAKE2b-256 926b4f693c043ccf1b5e9475ef091793af05aa4a19f246b7b8358909c5006500

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page