Skip to content
VS Code

DokuTrak for VS Code

io.github.crackx17/dokutrak-mcp

Let your agent chase the documents: create, chase, read and collect DokuTrak Document Requests.

client:VS Code transport:stdio runtime:npm

Install DokuTrak in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "dokutrak-api-key",
      "description": "DOKUTRAK_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "dokutrak-api-url",
      "description": "DOKUTRAK_API_URL",
      "password": true
    }
  ],
  "servers": {
    "dokutrak-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "dokutrak-mcp"
      ],
      "env": {
        "DOKUTRAK_API_KEY": "${input:dokutrak-api-key}",
        "DOKUTRAK_API_URL": "${input:dokutrak-api-url}"
      }
    }
  }
}

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

DokuTrak in other clients