Eka Care API的MCP工具 是 AI Skill Hub 本期精选MCP工具之一。综合评分 7.5 分,整体质量较高。我们推荐使用将其纳入你的 AI 工具库,帮助提升工作效率。
Eka Care API的MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
Eka Care API的MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/eka-care/eka-mcp-sdk
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"eka-care-api-mcp--": {
"command": "npx",
"args": ["-y", "eka-mcp-sdk"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 Eka Care API的MCP工具 执行以下任务... Claude: [自动调用 Eka Care API的MCP工具 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"eka_care_api_mcp__": {
"command": "npx",
"args": ["-y", "eka-mcp-sdk"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
uv sync --extra dev
uv sync
This SDK supports multi-tenant workspace routing where different clients (Eka, Moolchand, etc.) can use the same tools with their own API implementations.
Add to your Claude Desktop MCP configuration. Important: Use the full path to the virtual environment's Python executable:
{
"mcpServers": {
"eka-care": {
"command": "/absolute/path/to/eka-mcp-sdk/.venv/bin/python",
"args": ["-m", "eka_mcp_sdk.server"],
"env": {
"EKA_CLIENT_ID": "your_client_id",
"EKA_CLIENT_SECRET": "your_client_secret",
"EKA_API_KEY": "your_api_key"
}
}
}
}
```python
python examples/direct_usage.py
python examples/crewai_usage.py # Requires: uv add crewai
cat examples/MCP_USAGE.md
Create a .env file:
```env
EKA_API_BASE_URL=https://api.eka.care
EKA_MCP_SERVER_HOST=localhost EKA_MCP_SERVER_PORT=8000 EKA_LOG_LEVEL=INFO ```
| Environment Variable | Description | Default |
|---|---|---|
EKA_API_BASE_URL | Eka.care API base URL | https://api.eka.care |
EKA_CLIENT_ID | Client ID from Eka.care | Required |
EKA_CLIENT_SECRET | Client secret from Eka.care | Required |
EKA_API_KEY | API key for additional auth | Optional |
EKA_MCP_SERVER_HOST | MCP server host | localhost |
EKA_MCP_SERVER_PORT | MCP server port | 8000 |
EKA_LOG_LEVEL | Logging level | INFO |
A Python library and self-hosted MCP server that exposes Eka.care's healthcare APIs to LLM applications. Use it as an importable library in your own projects, or run it directly as a standalone MCP server.
from .base_emr_client import BaseEMRClient
class MoolchandClient(BaseEMRClient): def get_workspace_name(self) -> str: return "moolchand" # Implement all abstract methods with your API logic async def doctor_availability_elicitation(self, ...): ... async def book_appointment_with_validation(self, ...): ...
**2. Configure via environment:**
env
eka_mcp_sdk/clients/eka_mcp_sdk/tools/server.pyYou can easily add more API modules like: - ABDM Connector: Health ID creation, consent management, health record sharing - Self Assessment: Health surveys, symptom checking, record analysis - Custom Modules: Build your own using the base client architecture
python -m eka_mcp_sdk.server ```
If you installed the package globally or added the virtual environment to your PATH:
{
"mcpServers": {
"eka-care": {
"command": "eka-mcp-server",
"env": {
"EKA_CLIENT_ID": "your_client_id",
"EKA_CLIENT_SECRET": "your_client_secret",
"EKA_API_KEY": "your_api_key"
}
}
}
}
Git tag versioning (hatch-vcs) - Tags must follow PEP 440: v0.2.0a1, v0.2.0rc1, v0.2.0.dev1 — not v0.1.0-test - If an invalid tag exists alongside a valid one on the same commit, setuptools_scm may pick the invalid one → delete the bad tag: git push origin --delete <bad-tag> - After fixing tags, clear uv's build cache: uv cache clean
---
该项目是一个开源的MCP工具,提供了Eka Care API的接口访问,方便开发者快速接入Eka Care API的功能,提高开发效率和质量。项目质量较高,值得关注。
该工具未明确声明开源协议,商业使用前请联系原作者确认授权范围,避免侵权风险。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
经综合评估,Eka Care API的MCP工具 在MCP工具赛道中表现稳健,质量良好。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | eka-mcp-sdk |
| 原始描述 | 开源MCP工具:Eka Care API's over MCP 。⭐10 · Python |
| Topics | mcppython |
| GitHub | https://github.com/eka-care/eka-mcp-sdk |
| 语言 | Python |
收录时间:2026-05-21 · 更新时间:2026-05-22 · License:未公布 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端