Skip to content
VS Code

tokei agent for VS Code

io.github.gilesdawe/tokei-agent

Control your Tokei (tokei.io) pre-launch and waitlist campaigns from AI agents and the command line.

client:VS Code transport:stdio runtime:npm

Install tokei agent in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "tokei-api-key",
      "description": "TOKEI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tokei-api-url",
      "description": "TOKEI_API_URL",
      "password": true
    }
  ],
  "servers": {
    "tokei-agent": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "tokei-agent"
      ],
      "env": {
        "TOKEI_API_KEY": "${input:tokei-api-key}",
        "TOKEI_API_URL": "${input:tokei-api-url}"
      }
    }
  }
}

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

tokei agent in other clients