Skip to content
VS Code

gas paymaster for VS Code

io.github.lordbasilaiassistant-sudo/gas-paymaster

Gas credit management and sponsored transactions via The Agent Cafe paymaster

client:VS Code transport:stdio runtime:npm

Install gas paymaster in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "rpc-url",
      "description": "RPC_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "thryx-api-key",
      "description": "THRYX_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "deployer-private-key",
      "description": "DEPLOYER_PRIVATE_KEY",
      "password": true
    }
  ],
  "servers": {
    "gas-paymaster": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@thryx/gas-paymaster-mcp-server"
      ],
      "env": {
        "RPC_URL": "${input:rpc-url}",
        "THRYX_API_KEY": "${input:thryx-api-key}",
        "DEPLOYER_PRIVATE_KEY": "${input:deployer-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

gas paymaster in other clients