Documentation Index
Fetch the complete documentation index at: https://developer.eka.care/llms.txt
Use this file to discover all available pages before exploring further.
Server URL: https://medai-tools.eka.care/mcp
Prerequisite: An active Eka account. On first connect, your AI client will open a browser window for OAuth login. Contact ekaconnect@eka.care to get access.
Pick your AI client and follow the steps:
Claude Desktop
Claude Code
ChatGPT
Cursor
VS Code
Claude Desktop (Paid / Pro)
Open Settings
In Claude Desktop, click Settings → Connectors → Add custom connector
Enter server details
- Name:
MedAI Tools
- URL:
https://medai-tools.eka.care/mcp
Add and authenticate
Click Add, then sign in with your Eka account when prompted.
Claude Desktop (Free)
Free tier doesn’t have the Connectors UI. Use mcp-remote as a bridge:Open config
Go to Settings → Developer → Edit Config
Add this configuration
claude_desktop_config.json
{
"mcpServers": {
"medai-tools": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://medai-tools.eka.care/mcp"]
}
}
}
Config location: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)Save and restart
Save the file, restart Claude Desktop, then authenticate when the browser opens.
Add to your Claude Code settings:{
"mcpServers": {
"medai-tools": {
"type": "url",
"url": "https://medai-tools.eka.care/mcp"
}
}
}
Or run from the terminal:claude mcp add medai-tools --transport http https://medai-tools.eka.care/mcp
Requirements: ChatGPT with a paid plan (remote MCP connectors are not available on the Free tier).Enable developer mode
Navigate to Apps and Connectors → toggle on Developer mode
Create connector
Click Create app:
- Name:
MedAI Tools
- URL:
https://medai-tools.eka.care/mcp
Authenticate
Click Create and sign in with your Eka account when the OAuth window appears.
Open MCP settings
Press Cmd/Ctrl + Shift + P → Cursor Settings → Tools & MCP → New MCP Server
Add configuration
{
"mcpServers": {
"medai-tools": {
"url": "https://medai-tools.eka.care/mcp"
}
}
}
Connect
Click Connect, then sign in with your Eka account.
Requirements: VS Code 1.95+ with GitHub CopilotOpen Command Palette
Press Cmd/Ctrl + Shift + P → MCP: Add Server → HTTP
Enter details
- URL:
https://medai-tools.eka.care/mcp
- Name:
medai-tools
Authenticate
VS Code will prompt you to sign in with your Eka account.
Or add directly to settings:{
"mcp": {
"servers": {
"medai-tools": {
"type": "http",
"url": "https://medai-tools.eka.care/mcp"
}
}
}
}
Verify the Connection
Once connected, test with a prompt in your AI client:
Search for Dolo 650 in the Indian drug database
You should see the AI call indian_branded_drug_search and return drug details including generic composition and manufacturer.
Self-hosted (Partners Only)
The MedAI Tools server source is available to Eka partners. Self-hosting requires Python 3.13+, Docker, AWS Bedrock access, and Eka OAuth credentials.
Contact ekaconnect@eka.care to request source access and setup documentation.