Skip to content
VS Code

JustHandled Agent Utility Gateway for VS Code

io.github.justhandledlabs/agent-gateway

Thirty-two guarded agent utilities and maintained-data lookups over USDC x402.

client:VS Code transport:stdio runtime:npm

Install JustHandled Agent Utility Gateway in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "jh-evm-private-key",
      "description": "JH_EVM_PRIVATE_KEY",
      "password": true
    }
  ],
  "servers": {
    "agent-gateway": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@justhandledlabs/agent-client"
      ],
      "env": {
        "JH_EVM_PRIVATE_KEY": "${input:jh-evm-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

JustHandled Agent Utility Gateway in other clients