Skip to content
VS Code

agent toolkit for VS Code

io.github.white-hat-lab/agent-toolkit

Pay-per-call developer utilities and npm supply-chain security tools for coding agents, over x402.

client:VS Code transport:stdio runtime:npm

Install agent toolkit in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "payer-private-key",
      "description": "PAYER_PRIVATE_KEY",
      "password": true
    }
  ],
  "servers": {
    "agent-toolkit": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "agent-toolkit-mcp"
      ],
      "env": {
        "PAYER_PRIVATE_KEY": "${input:payer-private-key}"
      }
    }
  }
}

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

agent toolkit in other clients