Back to MCP directory
publicPublicdnsLocal runtime

theta-health-mcp

Theta Health MCP Server是一个通过模型上下文协议(MCP)将健康数据连接到AI助手的服务,支持医疗记录、功能检查、设备数据等健康数据的查询和管理。

article

README

🚀 Theta Health MCP 服务器

Theta Health MCP 服务器可将您的健康数据连接到 Cursor、Claude、Cherry Studio、Windsurf 等人工智能助手,让这些 AI 助手能够直接与您的 Theta Health 项目进行交互,为您提供更便捷的健康数据管理与查询服务。

🚀 快速开始

将您的 MCP 客户端(如 Cursor / Cherry Studio)配置为使用此服务器。大多数 MCP 客户端以 JSON 格式存储配置,如下所示:

{
  "mcpServers": {
    "theta_health_mcp": {
      "url": "https://mcp.thetahealth.ai/mcp"
    }
  }
}

首次使用时,您需要使用 oauth2.0 进行登录。

如果您的运行时环境中安装了 npx 工具,也可以使用以下配置:

{
  "mcpServers": {
    "theta_health_mcp": {
      "command": "npx",
      "args": [
        "-y",
        "theta_health_mcp"
      ]
    }
  }
}

Claude 桌面端

通过 Claude 桌面端扩展程序,您可以一键将 Theta Health MCP 添加到 Claude 桌面端:

Claude 代码端

使用以下命令将 Theta Health MCP 添加到 Claude 代码端:

claude mcp add -s user -t http theta_health_mcp https://mcp.thetahealth.ai/mcp

✨ 主要特性

Theta Health MCP 服务器支持多种工具,可帮助您管理表格、获取配置和查询数据。以下是部分工具的介绍:

  • get_medical_records:检索包括血液检查、实验室检查结果和临床测量在内的医疗记录。
  • get_functional_records:检索包括尿液检查、粪便检查、肺功能、免疫学、体格检查、超声、心电图等在内的功能检查记录。
  • get_device_data:检索包括睡眠、心率、血压、血氧、运动、步数等在内的设备生成的健康数据。
  • get_user_health_profile:检索包括基本人口统计信息、健康状况概述和健康数据类型统计在内的用户健康档案信息。
  • get_all_indicators:检索所有可用的医疗、功能和设备指标列表,包括数据量和可用时间段。

📚 详细文档

📄 许可证

本项目采用 MIT 许可证。有关详细信息,请参阅 LICENSE 文件。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client