Skip to content
VS Code

argus decision mcp for VS Code

io.github.commet/argus-decision-mcp

Preserve a user-authorized judgment and append later answers. No model verdict or human score.

client:VS Code transport:stdio runtime:npm

Install argus decision mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "argus-dir",
      "description": "ARGUS_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "argus-token",
      "description": "ARGUS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "argus-tz",
      "description": "ARGUS_TZ",
      "password": true
    }
  ],
  "servers": {
    "argus-decision-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "argus-decision-mcp"
      ],
      "env": {
        "ARGUS_DIR": "${input:argus-dir}",
        "ARGUS_TOKEN": "${input:argus-token}",
        "ARGUS_TZ": "${input:argus-tz}"
      }
    }
  }
}

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

argus decision mcp in other clients