Skip to main content

Model Context Protocol server for Garmin Connect API integration

Project description

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+

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

  • Python 3.12+ and uv, 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 UV

# Install dependencies
cd garmin-connect-mcp
uv sync

Then configure credentials using one of these methods:

Interactive Setup

uv run garmin-connect-mcp auth

This will prompt for your credentials, complete Garmin authentication, and save OAuth tokens for the MCP server to reuse.

Manual Setup

Create a .env file manually:

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 UV

{
  "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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

garmin_connect_mcp-1.0.0.tar.gz (44.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

garmin_connect_mcp-1.0.0-py3-none-any.whl (57.7 kB view details)

Uploaded Python 3

File details

Details for the file garmin_connect_mcp-1.0.0.tar.gz.

File metadata

  • Download URL: garmin_connect_mcp-1.0.0.tar.gz
  • Upload date:
  • Size: 44.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for garmin_connect_mcp-1.0.0.tar.gz
Algorithm Hash digest
SHA256 457314cc9d0d97e1d9ee65ebfd17f170b98adfaddb885f43dc768e6478fc71ee
MD5 f806e863559b2a2bec5a4264b13f6a71
BLAKE2b-256 b6c57adc9facd729575f66a8e1d391811ef68b9290efe0b28a84cc4d3b5ade84

See more details on using hashes here.

Provenance

The following attestation bundles were made for garmin_connect_mcp-1.0.0.tar.gz:

Publisher: release.yml on eddmann/garmin-connect-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file garmin_connect_mcp-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for garmin_connect_mcp-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8f7a1ea3842ab0af1f273c3032a2717d76ac860e73596df7709d48621db4f154
MD5 61236c38f57078787d2af457543d09d9
BLAKE2b-256 7e38292f4e657e9cd9af1b2adaa85bd0334f975efc672a726195aaa0c545e997

See more details on using hashes here.

Provenance

The following attestation bundles were made for garmin_connect_mcp-1.0.0-py3-none-any.whl:

Publisher: release.yml on eddmann/garmin-connect-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page