Skip to content
VS Code

ThoughtProof for VS Code

io.github.thoughtproof/thoughtproof-mcp

Pre-action gate: verify before pay/trade/write/deploy. execute=true only on ALLOW.

client:VS Code transport:stdio runtime:npm

Install ThoughtProof in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "dql-api-key",
      "description": "DQL_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sentinel-api-key",
      "description": "SENTINEL_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "thoughtproof-api-key",
      "description": "THOUGHTPROOF_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "thoughtproof-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "thoughtproof-mcp"
      ],
      "env": {
        "DQL_API_KEY": "${input:dql-api-key}",
        "SENTINEL_API_KEY": "${input:sentinel-api-key}",
        "THOUGHTPROOF_API_KEY": "${input:thoughtproof-api-key}"
      }
    }
  }
}

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

ThoughtProof in other clients