Garmin Workouts MCP for VS Code
io.github.pranciskus/garmin-workouts-mcp
Manage Garmin Connect workouts, including strength workouts with mapped exercises.
client:VS Code
transport:stdio
runtime:oci
Install Garmin Workouts MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "garmin-email",
"description": "GARMIN_EMAIL",
"password": true
},
{
"type": "promptString",
"id": "garmin-password",
"description": "GARMIN_PASSWORD",
"password": true
}
],
"servers": {
"garmin-workouts-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/pranciskus/garmin-workouts-mcp:0.1.2"
],
"env": {
"GARMIN_EMAIL": "${input:garmin-email}",
"GARMIN_PASSWORD": "${input:garmin-password}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs