Garmin Connect MCP Server

Garmin Connect MCP Server

A Model Context Protocol (MCP) server for Garmin Connect integration. Access your activities, health data, training metrics, and more through Claude and other LLMs.

Category
访问服务器

README

Garmin Connect MCP Server

Garmin Connect MCP Server

A Model Context Protocol (MCP) server for Garmin Connect integration. Access your activities, health data, training metrics, and more through Claude and other LLMs.

Python 3.12+ PyPI Docker

Overview

This MCP server provides 22 tools to interact with your Garmin Connect account, organized into 8 categories:

  • Activities (3 tools) - Query activities and view detailed metrics
  • Analysis (2 tools) - Compare activities and find similar workouts
  • Health & Wellness (4 tools) - Access health metrics, sleep, heart rate, and activity data
  • Training (3 tools) - Analyze training periods and performance trends
  • User Profile (1 tool) - Access profile, statistics, and personal records
  • Challenges & Goals (2 tools) - Track goals, PRs, badges, and challenges
  • Devices & Gear (2 tools) - Manage devices and equipment
  • Weight Management (2 tools) - Track weight data
  • Other (3 tools) - Workouts, manual data entry, women's health tracking

Additionally, the server provides:

  • 3 MCP Resources - Athlete profile, training readiness, and daily health for ongoing context
  • 6 MCP Prompts - Templates for common queries (training analysis, sleep quality, readiness checks, activity analysis, run comparison, health summary)

Prerequisites

  • uv (the package requires Python 3.12+, which uv can manage), OR
  • Docker

Installation & Setup

How Authentication Works

  1. Credential Authentication - Run the setup command to save credentials
  2. MFA Support - If MFA is enabled, the setup command prompts for your code
  3. Token Storage - OAuth tokens saved to ~/.garminconnect/ and automatically refreshed
  4. Persistence - Tokens persist across runs (UV on host, Docker requires volume mount)

Option 1: Using uvx

uvx garmin-connect-mcp auth

This will prompt for your credentials, complete Garmin authentication, and save OAuth tokens for the MCP server to reuse. It writes credentials to ~/.garminconnect.env by default and saves OAuth tokens under ~/.garminconnect/.

If you prefer manual configuration, create ~/.garminconnect.env yourself:

GARMIN_EMAIL=your-email@example.com
GARMIN_PASSWORD=your-password

Option 2: Using Docker

# Pull the image
docker pull ghcr.io/eddmann/garmin-connect-mcp:latest

Then configure credentials using one of these methods:

Interactive Setup

# Create the env file first (Docker will create it as a directory if it doesn't exist)
touch garmin-connect-mcp.env

# Run the setup script and persist generated tokens
docker run -it --rm \
  -v "/ABSOLUTE/PATH/TO/garmin-connect-mcp.env:/app/.env" \
  -v "/ABSOLUTE/PATH/TO/.garminconnect-docker:/root/.garminconnect" \
  ghcr.io/eddmann/garmin-connect-mcp:latest \
  auth

This will prompt for your credentials, complete Garmin authentication, and save credentials to garmin-connect-mcp.env. If you have MFA enabled, enter the code during this setup step.

Manual Setup

Create a garmin-connect-mcp.env file manually in your current directory:

GARMIN_EMAIL=your-email@example.com
GARMIN_PASSWORD=your-password

MFA Support for Docker

If you have MFA enabled on your Garmin account:

  • Run the interactive setup command with -it so you can enter your MFA code
  • The MCP server should then use saved tokens and should not prompt during runtime
  • Important: Without token persistence, you'll need to authenticate again on every container restart
  • Recommended: Mount the token directory as a volume during setup and server runs to persist tokens

To persist tokens across Docker runs, create a directory for tokens and mount it:

# Create token directory on host
mkdir -p ~/.garminconnect-docker

# Then use this directory in your Docker configuration (see Claude Desktop Configuration below)

Claude Desktop Configuration

Add to your configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Using uvx

After running uvx garmin-connect-mcp auth, configure Claude Desktop to start the published package:

{
  "mcpServers": {
    "garmin": {
      "command": "uvx",
      "args": ["garmin-connect-mcp"]
    }
  }
}

Using Local Source

For development, run from a local checkout:

cd garmin-connect-mcp
uv sync
uv run garmin-connect-mcp auth
{
  "mcpServers": {
    "garmin": {
      "command": "uv",
      "args": [
        "run",
        "--directory",
        "/ABSOLUTE/PATH/TO/garmin-connect-mcp",
        "garmin-connect-mcp"
      ]
    }
  }
}

Using Docker

Without Token Persistence (MFA required on every restart)

{
  "mcpServers": {
    "garmin": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-v",
        "/ABSOLUTE/PATH/TO/garmin-connect-mcp.env:/app/.env",
        "ghcr.io/eddmann/garmin-connect-mcp:latest"
      ]
    }
  }
}

With Token Persistence (Recommended for MFA users)

{
  "mcpServers": {
    "garmin": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-v",
        "/ABSOLUTE/PATH/TO/garmin-connect-mcp.env:/app/.env",
        "-v",
        "/ABSOLUTE/PATH/TO/.garminconnect-docker:/root/.garminconnect",
        "ghcr.io/eddmann/garmin-connect-mcp:latest"
      ]
    }
  }
}

Replace /ABSOLUTE/PATH/TO/.garminconnect-docker with the absolute path to your token directory. On Windows, use something like C:\\Users\\YOUR_USERNAME\\.garminconnect-docker.

Usage

Ask Claude to interact with your Garmin data using natural language. The server provides tools, resources, and prompt templates to help you get started.

Quick Start with MCP Prompts

Use built-in prompt templates for common queries (available via prompt suggestions in Claude):

  • analyze_recent_training - Analyze my training over the past 30 days
  • sleep_quality_report - Analyze sleep quality with recommendations
  • training_readiness_check - Check if I'm ready to train hard today
  • activity_deep_dive - Deep dive into a specific activity
  • compare_recent_runs - Compare recent runs to track progress
  • health_summary - Show comprehensive health overview

Activities

"Show me my runs from the last 30 days"
"Get details for my half marathon yesterday including splits and heart rate zones"
"Show me the comments on my latest cycling activity"

Training Analysis

"Analyze my training over the past 30 days"
"Compare my last three 10K runs"
"Find runs similar to my tempo workout from last week"

Health & Wellness

"How did I sleep last night?"
"What's my Body Battery level today?"
"Show me my stress levels and recovery status"
"Am I ready to train hard today?"

Note: The athlete profile resource (garmin://athlete/profile) and daily health resource (garmin://health/today) automatically provide ongoing context.

Performance Metrics

"What's my VO2 max trend?"
"Show me my training readiness and recent stats"

Note: List-returning tools use cursor-based pagination with default limits (10 items for activities, 7 for health data).

Available Tools

Activities (3 tools)

Tool Description
query_activities Query activities with pagination (by ID, date range, or specific date)
get_activity_details Get comprehensive activity details (splits, weather, HR zones, gear)
get_activity_social Get social details for an activity (likes, comments, kudos)

Analysis (2 tools)

Tool Description
compare_activities Compare 2-5 activities side-by-side
find_similar_activities Find activities similar to a reference activity

Health & Wellness (4 tools)

Tool Description
query_health_summary Query daily health summaries with pagination (stats, readiness, Body Battery)
query_sleep_data Query sleep data with stages, scores, and HRV
query_heart_rate_data Query heart rate data with resting HR
query_activity_metrics Query activity metrics (steps, stress, respiration, SpO2, etc.)

Training (3 tools)

Tool Description
analyze_training_period Analyze training over a time period with insights
get_performance_metrics Get performance metrics (VO2 max, hill score, endurance, HRV, etc.)
get_training_effect Get training effect and progress summary

User Profile (1 tool)

Tool Description
get_user_profile Get comprehensive athlete profile with stats and PRs

Challenges & Goals (2 tools)

Tool Description
query_goals_and_records Query goals, personal records, and race predictions
query_challenges Query challenges and badges (by status and type)

Devices & Gear (2 tools)

Tool Description
query_devices Query device information (with settings, solar data, alarms)
query_gear Query gear and equipment (with defaults and usage stats)

Weight Management (2 tools)

Tool Description
query_weight_data Query weight data for date or range
manage_weight_data Add or delete weight entries

Other (3 tools)

Tool Description
manage_workouts Workout management (list, get, download, upload)
log_health_data Log body composition, blood pressure, hydration
query_womens_health Query pregnancy and menstrual cycle data

MCP Resources

Resources provide ongoing context to the LLM without requiring explicit tool calls:

Resource Description
garmin://athlete/profile Athlete profile with stats, zones, and PRs
garmin://training/readiness Current training readiness and Body Battery
garmin://health/today Today's health snapshot (steps, sleep, stress, HR)

MCP Prompts

Prompt templates for common queries (accessible via prompt suggestion in Claude):

Prompt Description
analyze_recent_training Analyze training over a specified period
sleep_quality_report Sleep quality analysis with recommendations
training_readiness_check Check if ready to train hard today
activity_deep_dive Deep dive into a specific activity with all metrics
compare_recent_runs Compare recent runs to identify trends
health_summary Comprehensive health overview

License

MIT License - see LICENSE file for details

Disclaimer

This project is not affiliated with, endorsed by, or sponsored by Garmin Ltd. or any of its affiliates. All product names, logos, and brands are property of their respective owners.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选