Skip to content
VS Code

tempo api mcp for VS Code

io.github.chrischall/tempo-api-mcp

Tempo time-tracking for Claude — worklogs, plans, and timesheet approvals

client:VS Code transport:stdio runtime:npm

Install tempo api mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "tempo-api-token",
      "description": "TEMPO_API_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "tempo-api-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "tempo-api-mcp"
      ],
      "env": {
        "TEMPO_API_TOKEN": "${input:tempo-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

tempo api mcp in other clients