time vs mirobody
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | mirobody by thetahealth | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1,042 |
| 30天用量 | — | — |
| 综合分 | 77 | 53 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | AI / LLM 工具health效率工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 本月 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
mirobody · 概述
一个通过MCP服务器和Claude Agent技能连接健康、财务数据与AI的个人数据平台。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
mirobody · 使用场景
- 使用多种可穿戴设备和Apple Health数据进行个人健康分析
- 通过创建自定义AI工具处理个人财务数据进行财务管理
- 构建利用通过MCP工具访问的个人数据的特定领域代理
time · 安装
安装选项
**使用 uv(推荐):**
uvx mcp-server-time**使用 PIP:**
pip install mcp-server-time
python -m mcp_server_time**为 Claude Desktop 配置:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}mirobody · 安装
使用Docker快速开始
git clone https://github.com/thetahealth/mirobody.git
cd mirobody
./deploy.sh这将设置包含Postgres、Redis和Mirobody的完整环境。
作为MCP服务器使用
设置MCP_PUBLIC_URL通过HTTPS暴露MCP服务器以实现远程访问。
Claude Desktop集成
添加到Claude Desktop配置:
{
"mcpServers": {
"mirobody": {
"command": "python",
"args": ["-m", "mirobody.mcp.server"],
"env": {"MCP_CONFIG_PATH": "/path/to/config"}
}
}
}