garmin-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| GARMIN_EMAIL | Yes | Your Garmin Connect email address | |
| GARMIN_PASSWORD | Yes | Your Garmin Connect password |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| extensions | {
"io.modelcontextprotocol/ui": {}
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| garmin_loginA | Inicia sesión en Garmin Connect. Si no pasas email/password, usa las variables de entorno GARMIN_EMAIL/GARMIN_PASSWORD. Si Garmin pide un código de verificación (MFA), vuelve a llamar a esta tool solo con mfa_code relleno. |
| get_activitiesB | Lista actividades/entrenamientos recientes de Garmin Connect, con distancia, duración, frecuencia cardíaca media y desnivel. Usa activity_type (p. ej. 'running', 'cycling') para filtrar por deporte. |
| get_activity_detailA | Detalle de una actividad concreta de Garmin Connect: resumen y splits/parciales. Usa el 'id' devuelto por get_activities. |
| get_daily_summaryB | Resumen diario de pasos, calorías y minutos activos. Formato de fecha YYYY-MM-DD. Si no indicas fechas, usa el día de hoy. |
| get_recovery_metricsA | Métricas de recuperación de un día: sueño, Body Battery, HRV y frecuencia cardíaca en reposo. Formato de fecha YYYY-MM-DD; por defecto usa el día de hoy. Para varios días, llama varias veces. |
| get_training_zonesB | Zonas de frecuencia cardíaca y de potencia configuradas en Garmin Connect. |
| get_training_statusB | Estado de forma y carga de entrenamiento: Training Status/Load, VO2 max, récords personales y predicción de tiempos de carrera. Formato de fecha YYYY-MM-DD; por defecto usa el día de hoy. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Each tool targets a distinct aspect of Garmin Connect: login, activities, daily summary, recovery, training zones, training status, and activity detail. There is no overlap in purpose.
All tools use snake_case with a clear 'get_' prefix for queries and a single 'garmin_login' for authentication. The naming pattern is consistent and predictable.
Seven tools is well-scoped for a fitness data server, covering login, activity listing, daily summary, recovery metrics, training zones, training status, and activity detail. No tool feels superfluous.
The tools cover common read operations for Garmin Connect, but lack filtering by date range for activities and batch retrieval for metrics. Minor gaps that do not severely hinder typical use.