Skip to content
VS Code

obol for VS Code

io.github.halfkey/obol

Solana agent gateway via x402. Wallet, token, DeFi, and swap tools. Pay per request.

client:VS Code transport:stdio runtime:npm

Install obol in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "obol-url",
      "description": "OBOL_URL",
      "password": true
    }
  ],
  "servers": {
    "obol": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "obol-mcp"
      ],
      "env": {
        "OBOL_URL": "${input:obol-url}"
      }
    }
  }
}

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

obol in other clients