Back to Browse

Aicare MCP Server

Developer ToolsLow Risk10.0MCP RegistryRemote
Free

Server data from the Official MCP Registry

AIcare 康护评估 MCP:舌诊等 AI 检测 → 健康评估 → 康护报告 → 康复指导书(健康评估与康护建议,非医学诊断)

About

AIcare 康护评估 MCP:舌诊等 AI 检测 → 健康评估 → 康护报告 → 康复指导书(健康评估与康护建议,非医学诊断)

Remote endpoints: streamable-http: https://www.aicare.group/api/mcp/aicare streamable-http: https://agent.avatargaia.top/api/mcp/aicare

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.

Endpoint verified · Requires authentication · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

How to Connect

Remote Plugin

No local installation needed. Your AI client connects to the remote endpoint directly.

Add this to your MCP configuration to connect:

{
  "mcpServers": {
    "group-aicare-aicare-mcp": {
      "url": "https://www.aicare.group/api/mcp/aicare"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

AIcare MCP

AI 康护评估 MCP Server — 让任何 AI Agent 用一句话完成「看检测图 → 出康护评估 → 生成康复方案」。 由 虚实科技 研发,面向康护机构、康复师、家庭照护场景。

MCP License


这是什么

AIcare MCP 把「AIcare 智护工作台」的核心能力开放为标准 MCP 工具,任何支持 MCP 的客户端 (Claude、ChatGPT、Cursor、OpenClaw/Gaia Agent 等)都可以直接调用:

工具作用说明
assess_health_image上传检测照片 → 结构化量表评估舌象 / 面色 / 步态 / 指甲 / 掌纹 / 脑龄 / 骨密度 / 卒中风险 …
run_health_survey提交问卷/量表 → 评估结果睡眠 / 呼吸 / 用药安全 / 居家照护 / 跌倒 / Braden 等
generate_care_plan患者档案 + 评估结果 → 康护分析报告含整体评估、风险分级、重点关注项
generate_rehab_guide生成康复指导书 / 阶段目标 / 周计划长任务,异步返回
get_patient_context查询关爱对象档案家属 / 康护师场景

⚕️ 合规声明:本服务提供健康评估与康护建议,不构成医学诊断或治疗方案。 所有输出需由专业人员复核。

服务端点

POST https://agent.avatargaia.top/api/mcp/aicare
Transport: streamable-http
Auth: Authorization: Bearer <API_KEY>

快速开始

1) Claude / 支持远程 MCP 的客户端

{
  "mcpServers": {
    "aicare": {
      "type": "streamable-http",
      "url": "https://agent.avatargaia.top/api/mcp/aicare",
      "headers": { "Authorization": "Bearer ${AICARE_API_KEY}" }
    }
  }
}

2) curl(直接调工具)

curl -X POST https://agent.avatargaia.top/api/mcp/aicare \
  -H "Authorization: Bearer $AICARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0", "id": 1, "method": "tools/call",
    "params": {
      "name": "assess_health_image",
      "arguments": { "type": "tongue", "image_url": "https://example.com/tongue.jpg" }
    }
  }'

3) Python

import requests, os
r = requests.post(
    "https://agent.avatargaia.top/api/mcp/aicare",
    headers={"Authorization": f"Bearer {os.environ['AICARE_API_KEY']}"},
    json={"jsonrpc": "2.0", "id": 1, "method": "tools/list"},
)
print(r.json())

获取 API Key

联系 octopus@arplus.top 开通(提供机构名称与使用场景)。

典型用法

用户:帮我看看这张舌象照片,然后给我妈出一份康护方案
Agent:① assess_health_image(type="tongue", image_url=...) → 量表评估
       ② generate_care_plan(target_id=..., assessments=[...]) → 康护报告
       ③ generate_rehab_guide(plan_id=...) → 康复指导书(长任务)

相关仓库 / 链接

许可

  • 本仓库内的文档与示例代码:MIT
  • MCP 服务本身:商业服务,需 API Key,详见 TERMS.md

虚实科技 · AvatarGaia · AIcare 智能康护

Reviews

No reviews yet

Be the first to review this server!