Skip to content
VS Code

Task tracking (sessions, ETA, dashboard) for VS Code

io.github.amineutron/mcp-tracking

Track long-running tasks in real time: sessions, steps, speed, ETA, HTTP API and TUI dashboard.

client:VS Code transport:stdio runtime:pypi

Install Task tracking (sessions, ETA, dashboard) in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "tracking-state-dir",
      "description": "TRACKING_STATE_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tracking-token-file",
      "description": "TRACKING_TOKEN_FILE",
      "password": true
    }
  ],
  "servers": {
    "mcp-tracking": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-tracking"
      ],
      "env": {
        "TRACKING_STATE_DIR": "${input:tracking-state-dir}",
        "TRACKING_TOKEN_FILE": "${input:tracking-token-file}"
      }
    }
  }
}

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

Task tracking (sessions, ETA, dashboard) in other clients