Skip to content
VS Code

toggl mcp for VS Code

io.github.souravpn/toggl-mcp

MCP server for Toggl Track — gives Claude access to your time tracking data

client:VS Code transport:stdio runtime:npm

Install toggl mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "toggl-api-token",
      "description": "TOGGL_API_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "toggl-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@souravpn/toggl-mcp"
      ],
      "env": {
        "TOGGL_API_TOKEN": "${input:toggl-api-token}"
      }
    }
  }
}

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

toggl mcp in other clients