Skip to content
VS Code

thask for VS Code

io.github.kimgh06/thask

Dependency-graph MCP server. Tells Claude/Cursor what breaks if you change X. Provenance guards.

client:VS Code transport:stdio runtime:npm

Install thask in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "thask-url",
      "description": "THASK_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "thask-token",
      "description": "THASK_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "thask": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@thask-org/cli"
      ],
      "env": {
        "THASK_URL": "${input:thask-url}",
        "THASK_TOKEN": "${input:thask-token}"
      }
    }
  }
}

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

thask in other clients