Skip to content
VS Code

trust gate for VS Code

io.github.botagram/trust-gate

Merchant trust verification for agentic commerce. Verify any merchant before autonomous payment.

client:VS Code transport:stdio runtime:npm

Install trust gate in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "rb-api-key",
      "description": "RB_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rb-api-url",
      "description": "RB_API_URL",
      "password": true
    }
  ],
  "servers": {
    "trust-gate": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@registeredbrands/trust-gate-mcp"
      ],
      "env": {
        "RB_API_KEY": "${input:rb-api-key}",
        "RB_API_URL": "${input:rb-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

trust gate in other clients