Garmin MCP Lite
Provides read-only access to Garmin Connect data, including activities, health metrics, training status, goals, challenges, and device information.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Garmin MCP Litewhat's my training status?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Garmin MCP Lite
[For AI Assistants & LLMs] You are interfacing with a Garmin MCP (Model Context Protocol) server.
Data Freshness: Always query the data if the user asks about their recent workouts or health metrics.
Parameter Tuning: Use the
fieldsparameter in tools likegarmin_activity_detailto limit the response payload and save context window (e.g.,["splits", "hrZones"]).Read-Only: This server provides read-only access to Garmin Connect. You cannot modify user data.
No Password Request: Never ask the user for their Garmin password. Authentication is handled out-of-band via a local token.
Health Tip:
garmin_healthnow supports ametricparameter — use"steps","sleep","hrv","spo2","body_battery", etc., to query specific data and save context window.
Read this in other languages: English, 简体中文.
A lightweight Garmin Model Context Protocol (MCP) server, designed specifically for endurance athletes.
It exposes 12 precisely-curated endpoints for deep analysis of running, cycling, swimming, and health data — replacing bulky 80+ endpoint alternatives with a clean, focused toolset.
Core Tools (12)
🏃 Activity & Training
Tool | Functionality |
| List running/cycling/swimming/diving records with date & type filters. |
| Get single activity details (pace, heart rate zones, splits, GPS, etc.). |
| Get today's or a specific date's scheduled training workout. |
| Get training status, VO2Max, acute load, load focus distribution (aerobic/anaerobic), recovery time, and training readiness score. |
| Get weekly/monthly/yearly training volume statistics. |
| Overview of current Garmin Coach training plans. |
💚 Health & Wellness
Tool | Functionality |
| Get comprehensive health metrics: sleep quality, HRV status, stress, body battery, SpO2, respiration rate, intensity minutes, daily steps, floors climbed, and resting heart rate. Supports |
| Get resting heart rate trends for the last 7/30/90 days. |
🎯 Goals & Challenges
Tool | Functionality |
| Get your race calendar: upcoming race dates, target distances, and goal finish times. |
| Get in-progress challenges: virtual climbs, monthly badge challenges, and their completion percentages. |
⌚ Device & Gear
Tool | Functionality |
| Get your shoe/bike gear list and their real cumulative mileage. |
| Get connected device info: firmware version, update availability, primary device status, and registration date. |
Related MCP server: Strava MCP Server
Quickstart (via PyPI & uv)
The easiest way to run this server is using uvx (no cloning required).
1. Authenticate (First Time Only)
Why not just put the password in the AI config? Garmin has strict security measures. Logging in from a new location/MCP server often triggers Cloudflare CAPTCHAs or MFA email codes. If the password is in Claude's background config, the AI assistant will silently freeze or fail when challenged, with no way for you to input the code.
Therefore, this plugin uses a secure two-step strategy: Run a login script in your terminal first. If challenged, you can interactively input the MFA code. Upon success, a session token is cached locally (valid for ~1 year).
GARMIN_EMAIL="your@email.com" GARMIN_PASSWORD="your_password" uvx --with garmin-mcp-lite garmin-mcp-lite-login(💡 China Region Users: If your account is registered in Garmin China (garmin.cn), prefix the command with GARMIN_IS_CN=true.)
2. Configure Your AI Assistant
Once authenticated, add the server to your favorite MCP-compatible AI assistant.
Claude Desktop
Add this to your ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"garmin-lite": {
"command": "uvx",
"args": [
"garmin-mcp-lite"
]
}
}
}Cursor / Windsurf / Gemini CLI / Other MCP Clients
Use the exact same command and args as above. The server will automatically load the cached token from ~/.garmin-mcp-lite/garmin_tokens.json.
Manual Installation (for Developers)
If you want to modify the code:
git clone https://github.com/Golden0Voyager/garmin-mcp-lite.git
cd garmin-mcp-lite
uv sync
# Login
GARMIN_EMAIL="your@email.com" GARMIN_PASSWORD="your_password" python -m garmin_mcp_lite.login
# Run server
python -m garmin_mcp_lite.serverExample Queries
Once connected, you can ask your AI assistant natural-language questions like:
"What's my training load focus this week?"
"Show me my race goal for June and what my current predicted finish time is."
"How's my Grossglockner virtual climb challenge going?"
"Is my Descent G1 firmware up to date?"
"How many steps have I taken today? Am I on track for my daily goal?"
"Analyze my sleep quality from last night."
Comparison with Other Garmin MCPs
Taxuspt/garmin_mcp | garmin_mcp_lite | |
Tool Count | 80+ | 12 |
Naming |
|
|
Deep Queries | No |
|
Training Load | Basic | Acute load + load focus distribution |
Health Depth | Basic | SpO2, respiration, intensity minutes, steps |
Race/Challenge | No | Events calendar + challenge progress |
Write Ops | Heavy (weight/nutrition/gear) | Read-only |
License
MIT © 2026 Haining Yu
This project is built on top of the excellent garminconnect library. It is not an official Garmin product. Please adhere to Garmin Connect's terms of service when using this tool.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Golden0Voyager/garmin-mcp-lite'
If you have feedback or need assistance with the MCP directory API, please join our Discord server