Skip to content
VS Code

coach mcp for VS Code

io.github.snoozelieb/coach-mcp

Adaptive AI training coach MCP server backed by Garmin Connect

client:VS Code transport:stdio runtime:pypi

Install coach 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
    },
    {
      "type": "promptString",
      "id": "coach-data-dir",
      "description": "COACH_DATA_DIR",
      "password": true
    }
  ],
  "servers": {
    "coach-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "garmin-coach-mcp"
      ],
      "env": {
        "GARMIN_EMAIL": "${input:garmin-email}",
        "GARMIN_PASSWORD": "${input:garmin-password}",
        "COACH_DATA_DIR": "${input:coach-data-dir}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

coach mcp in other clients