Skip to content
VS Code

trust for VS Code

io.github.agntor/trust

Trust layer for AI agents: identity, guard, redact, escrow, and x402 payments.

client:VS Code transport:stdio runtime:npm

Install trust in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "agntor-api-key",
      "description": "AGNTOR_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "agntor-secret-key",
      "description": "AGNTOR_SECRET_KEY",
      "password": true
    }
  ],
  "servers": {
    "trust": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@agntor/mcp"
      ],
      "env": {
        "AGNTOR_API_KEY": "${input:agntor-api-key}",
        "AGNTOR_SECRET_KEY": "${input:agntor-secret-key}"
      }
    }
  }
}

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

trust in other clients