Skip to content
VS Code

totem for VS Code

io.github.thebriangao/totem

Totem — talk to your wearables with AI. Today: full Whoop access (48 tools).

client:VS Code transport:stdio runtime:npm

Install totem in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "whoop-ios-bearer-token",
      "description": "WHOOP_IOS_BEARER_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "whoop-cognito-refresh-token",
      "description": "WHOOP_COGNITO_REFRESH_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "whoop-email",
      "description": "WHOOP_EMAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "whoop-user-id",
      "description": "WHOOP_USER_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "whoop-timezone",
      "description": "WHOOP_TIMEZONE",
      "password": true
    }
  ],
  "servers": {
    "totem": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@thebriangao/totem"
      ],
      "env": {
        "WHOOP_IOS_BEARER_TOKEN": "${input:whoop-ios-bearer-token}",
        "WHOOP_COGNITO_REFRESH_TOKEN": "${input:whoop-cognito-refresh-token}",
        "WHOOP_EMAIL": "${input:whoop-email}",
        "WHOOP_USER_ID": "${input:whoop-user-id}",
        "WHOOP_TIMEZONE": "${input:whoop-timezone}"
      }
    }
  }
}

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

totem in other clients