Skip to content
VS Code

intervals icu mcp for VS Code

io.github.hhopke/intervals-icu-mcp

Read/write Intervals.icu MCP server: activities, wellness, calendar, gear, and workouts.

client:VS Code transport:stdio runtime:pypi

Install intervals icu mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "intervals-icu-api-key",
      "description": "INTERVALS_ICU_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "intervals-icu-athlete-id",
      "description": "INTERVALS_ICU_ATHLETE_ID",
      "password": true
    }
  ],
  "servers": {
    "intervals-icu-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "intervals-icu-mcp"
      ],
      "env": {
        "INTERVALS_ICU_API_KEY": "${input:intervals-icu-api-key}",
        "INTERVALS_ICU_ATHLETE_ID": "${input:intervals-icu-athlete-id}"
      }
    }
  }
}

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

intervals icu mcp in other clients