An MCP server that gives AI agents access to the Eka Care developer documentation — helping developers understand and integrate Eka's healthcare APIs.
No installation. No credentials. Just a URL.
| Platform | Command |
|---|---|
| Claude Code | claude mcp add eka-docs --url https://mcp.eka.care/developer |
| Claude Desktop | Add to claude_desktop_config.json (see below) |
| Cursor | Add URL in Settings → MCP |
| VS Code | Add to .vscode/mcp.json (see below) |
{
"mcpServers": {
"eka-docs": {
"type": "url",
"url": "https://mcp.eka.care/developer"
}
}
}{
"servers": {
"eka-docs": {
"type": "sse",
"url": "https://mcp.eka.care/developer/sse"
}
}
}- "What APIs does Eka Care expose?"
- "How do I authenticate with the Eka API?"
- "Show me how to book an appointment"
- "What is EkaScribe and how do I use it?"
- "How does ABDM / ABHA integration work?"
- "Give me a Python code example for medication search"
- "What webhooks does Eka send for appointments?"
| Tool | Description |
|---|---|
list_sections |
Browse all documentation sections and pages |
search_docs |
Search by keyword across all docs |
get_page |
Fetch full content of a specific page |
get_api_reference |
Get API reference for a specific endpoint |
get_code_example |
Get code examples for a feature |
- Core EMR: Appointments, Patients, Doctors, Clinics, Prescriptions
- Health AI: EkaScribe (medical transcription), MedAssist, Assessments
- Knowledge Base: Medications, Diagnoses, Treatment Protocols
- ABDM / Interoperability: ABHA, Care Contexts, Consent Management
- Lab Reports: Upload, Parse, Webhooks
- SDKs: Python, TypeScript, Go, Java, Android, iOS
git clone https://github.com/mayank-garg-eka/eka-developer-mcp
cd eka-developer-mcp
pip install -e .
eka-developer-mcpOr with Docker:
docker build -t eka-developer-mcp .
docker run -p 8000:8000 eka-developer-mcpSee CLAUDE.md for architecture details.