Skip to content
VS Code

whoop mcp for VS Code

io.github.davidmosiah/whoop-mcp

Privacy-first, unofficial WHOOP MCP server for AI health, sleep, recovery, and performance agents.

client:VS Code transport:stdio runtime:npm

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-token-path",
      "description": "WHOOP_TOKEN_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "whoop-privacy-mode",
      "description": "WHOOP_PRIVACY_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "whoop-cache",
      "description": "WHOOP_CACHE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "whoop-cache-path",
      "description": "WHOOP_CACHE_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "whoop-no-cache",
      "description": "WHOOP_NO_CACHE",
      "password": true
    }
  ],
  "servers": {
    "whoop-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "whoop-mcp-unofficial"
      ],
      "env": {
        "WHOOP_CLIENT_ID": "${input:whoop-client-id}",
        "WHOOP_CLIENT_SECRET": "${input:whoop-client-secret}",
        "WHOOP_REDIRECT_URI": "${input:whoop-redirect-uri}",
        "WHOOP_TOKEN_PATH": "${input:whoop-token-path}",
        "WHOOP_PRIVACY_MODE": "${input:whoop-privacy-mode}",
        "WHOOP_CACHE": "${input:whoop-cache}",
        "WHOOP_CACHE_PATH": "${input:whoop-cache-path}",
        "WHOOP_NO_CACHE": "${input:whoop-no-cache}"
      }
    }
  }
}

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