Skip to content
VS Code

ponzu for VS Code

io.github.yuzukyouma/ponzu

ERC-20 token launchpad on Ethereum — deploy, presale, swap, and farm via AI agents

client:VS Code transport:stdio runtime:npm

Install ponzu in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ponzu-private-key",
      "description": "PONZU_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ponzu-rpc-url",
      "description": "PONZU_RPC_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ponzu-network",
      "description": "PONZU_NETWORK",
      "password": true
    }
  ],
  "servers": {
    "ponzu": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@ponzu_app/mcp"
      ],
      "env": {
        "PONZU_PRIVATE_KEY": "${input:ponzu-private-key}",
        "PONZU_RPC_URL": "${input:ponzu-rpc-url}",
        "PONZU_NETWORK": "${input:ponzu-network}"
      }
    }
  }
}

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

ponzu in other clients