fetch vs apple-health-mcp-server
并排对比,帮你在这两个 MCP server 之间做选择。
fetch by modelcontextprotocol | apple-health-mcp-server by the-momentum | |
|---|---|---|
| Stars | ★ 85,748 | ★ 189 |
| 30天用量 | — | — |
| 综合分 | 76 | 47 |
| 官方 | ✓ | — |
| 分类 | 网页抓取AI / LLM 工具效率工具 | AI / LLM 工具health数据库 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 3 个月前 |
fetch · 概述
一个MCP服务器,抓取网页内容并将HTML转换为Markdown,让大模型能读取网页信息。
apple-health-mcp-server · 概述
MCP 服务器,使用 DuckDB 通过自然语言查询 Apple 健康数据。
fetch · 使用场景
- 大模型阅读新闻文章和博客
- 网页内容分析
- 从公共网站检索信息
- 分块读取大型网页文档
apple-health-mcp-server · 使用场景
- 通过自然语言查询分析个人健康数据
- 跟踪长期健身趋势和锻炼统计
- 无需手动数据处理即可生成健康洞察
fetch · 安装
安装
**使用uv(推荐)** 无需特定安装。使用uvx直接运行服务器:
uvx mcp-server-fetch**使用PIP** 通过pip安装:
pip install mcp-server-fetch然后运行:
python -m mcp_server_fetchClaude桌面配置
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}apple-health-mcp-server · 安装
安装
- 克隆仓库:
git clone https://github.com/the-momentum/apple-health-mcp-server.git
cd apple-health-mcp-server- 安装依赖:
pip install -r requirements.txt- 设置环境变量:
cp .env.example .env
# 编辑 .env 文件进行配置- 运行服务器:
python -m mcp_server.app对于 Claude Desktop,在 config.json 中添加:
{
"mcpServers": {
"apple-health": {
"command": "python",
"args": ["-m", "mcp_server.app"],
"env": {
"PYTHONPATH": "."
}
}
}
}