garmin-connect-mcp vs memory
并排对比,帮你在这两个 MCP server 之间做选择。
garmin-connect-mcp by eddmann | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 36 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 41 | 77 |
| 官方 | — | ✓ |
| 分类 | health效率工具开发者工具 | 知识库 / RAGAI / LLM 工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 6 个月前 | 本月 |
garmin-connect-mcp · 概述
一个功能齐全的 MCP 服务器,提供全面的 Garmin Connect 数据访问工具。
memory · 概述
一个实现持久化记忆的 MCP 服务器,使用本地知识图谱让 AI 模型能在聊天间记住用户信息。
garmin-connect-mcp · 使用场景
- 分析随时间变化的训练表现和趋势
- 获取详细的运动洞察,包括分段和心率区间
- 监控健康指标,如睡眠质量和身体电池状态
memory · 使用场景
- 通过记住用户偏好、历史和关系来个性化 AI 助手交互
- 构建维护对话历史的上下文感知聊天应用
- 创建在 AI 模型会话间持久化的知识库
garmin-connect-mcp · 安装
安装
使用 UV
cd garmin-connect-mcp
uv sync创建包含凭据的 .env 文件:
GARMIN_EMAIL=your-email@example.com
GARMIN_PASSWORD=your-password使用 Docker
docker pull ghcr.io/eddmann/garmin-connect-mcp:latest创建 garmin-connect-mcp.env 文件并添加凭据。
Claude Desktop 配置
{
"mcpServers": {
"garmin": {
"command": "uv",
"args": [
"run",
"--directory",
"/ABSOLUTE/PATH/TO/garmin-connect-mcp",
"garmin-connect-mcp"
]
}
}
}memory · 安装
安装
Claude Desktop
添加到你的 claude_desktop_config.json 文件中:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
使用一键安装按钮或在 .vscode/mcp.json 中手动配置:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}