Skip to content
VS Code

pumpclaw for VS Code

io.github.clawd800/pumpclaw

Free token launcher on Base. Deploy ERC-20 tokens via Uniswap V4 with 80% creator fees.

client:VS Code transport:stdio runtime:npm

Install pumpclaw in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "base-private-key",
      "description": "BASE_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "base-rpc-url",
      "description": "BASE_RPC_URL",
      "password": true
    }
  ],
  "servers": {
    "pumpclaw": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "pumpclaw-mcp"
      ],
      "env": {
        "BASE_PRIVATE_KEY": "${input:base-private-key}",
        "BASE_RPC_URL": "${input:base-rpc-url}"
      }
    }
  }
}

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

pumpclaw in other clients