Skip to content
VS Code

Clockify Time Tracking for VS Code

io.github.tracegazer/clockify-mcp

Clockify time-tracking MCP: 112 tools across 18 domains, read-only by default with opt-in writes.

client:VS Code transport:stdio runtime:pypi

Install Clockify Time Tracking in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "clockify-api-key",
      "description": "CLOCKIFY_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "clockify-access-mode",
      "description": "CLOCKIFY_ACCESS_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "clockify-default-workspace-id",
      "description": "CLOCKIFY_DEFAULT_WORKSPACE_ID",
      "password": true
    }
  ],
  "servers": {
    "clockify-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "clockify-mcp"
      ],
      "env": {
        "CLOCKIFY_API_KEY": "${input:clockify-api-key}",
        "CLOCKIFY_ACCESS_MODE": "${input:clockify-access-mode}",
        "CLOCKIFY_DEFAULT_WORKSPACE_ID": "${input:clockify-default-workspace-id}"
      }
    }
  }
}

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

Clockify Time Tracking in other clients