Skip to content
VS Code

agenttrust for VS Code

io.github.bch1212/agenttrust

Trust scores & reputation for the agent-to-agent economy. Verify A2A counterparties.

client:VS Code transport:stdio runtime:npm

Install agenttrust in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "agenttrust-api-key",
      "description": "AGENTTRUST_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "agenttrust-api-base",
      "description": "AGENTTRUST_API_BASE",
      "password": true
    }
  ],
  "servers": {
    "agenttrust": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "agenttrust-mcp"
      ],
      "env": {
        "AGENTTRUST_API_KEY": "${input:agenttrust-api-key}",
        "AGENTTRUST_API_BASE": "${input:agenttrust-api-base}"
      }
    }
  }
}

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

agenttrust in other clients