Skip to content
VS Code

whoop mcp for VS Code

io.github.ashwanthramkl/whoop-mcp

Read-only WHOOP v2 data for MCP clients, with local SQLite cache and CSV/JSONL/Parquet exports.

client:VS Code transport:stdio runtime:pypi

Install whoop mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "whoop-client-id",
      "description": "WHOOP_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "whoop-client-secret",
      "description": "WHOOP_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "whoop-redirect-uri",
      "description": "WHOOP_REDIRECT_URI",
      "password": true
    },
    {
      "type": "promptString",
      "id": "whoop-log-level",
      "description": "WHOOP_LOG_LEVEL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "whoop-log-file",
      "description": "WHOOP_LOG_FILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "whoop-log-json",
      "description": "WHOOP_LOG_JSON",
      "password": true
    }
  ],
  "servers": {
    "whoop-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "whoop-mcp"
      ],
      "env": {
        "WHOOP_CLIENT_ID": "${input:whoop-client-id}",
        "WHOOP_CLIENT_SECRET": "${input:whoop-client-secret}",
        "WHOOP_REDIRECT_URI": "${input:whoop-redirect-uri}",
        "WHOOP_LOG_LEVEL": "${input:whoop-log-level}",
        "WHOOP_LOG_FILE": "${input:whoop-log-file}",
        "WHOOP_LOG_JSON": "${input:whoop-log-json}"
      }
    }
  }
}

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

whoop mcp in other clients