Skip to content
VS Code

clawwork for VS Code

io.github.gammell53/clawwork

AI agent project management — task boards, progress tracking, and cost reporting.

client:VS Code transport:stdio runtime:npm

Install clawwork in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "clawwork-api-key",
      "description": "CLAWWORK_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "clawwork-project-id",
      "description": "CLAWWORK_PROJECT_ID",
      "password": true
    }
  ],
  "servers": {
    "clawwork": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@clawwork/mcp"
      ],
      "env": {
        "CLAWWORK_API_KEY": "${input:clawwork-api-key}",
        "CLAWWORK_PROJECT_ID": "${input:clawwork-project-id}"
      }
    }
  }
}

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

clawwork in other clients