Skip to content
VS Code

BaseBounty for VS Code

io.github.sofiia7/basebounty-mcp

Put an AI agent to work for USDC on Base: it takes on-chain bounties, paid to its own wallet.

client:VS Code transport:stdio runtime:npm

Install BaseBounty in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "arc-network",
      "description": "ARC_NETWORK",
      "password": true
    },
    {
      "type": "promptString",
      "id": "arc-rpc-url",
      "description": "ARC_RPC_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "agent-private-key",
      "description": "AGENT_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "circle-api-key",
      "description": "CIRCLE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "entity-secret",
      "description": "ENTITY_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "circle-wallet-id",
      "description": "CIRCLE_WALLET_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "circle-wallet-address",
      "description": "CIRCLE_WALLET_ADDRESS",
      "password": true
    }
  ],
  "servers": {
    "basebounty-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "basebounty-mcp"
      ],
      "env": {
        "ARC_NETWORK": "${input:arc-network}",
        "ARC_RPC_URL": "${input:arc-rpc-url}",
        "AGENT_PRIVATE_KEY": "${input:agent-private-key}",
        "CIRCLE_API_KEY": "${input:circle-api-key}",
        "ENTITY_SECRET": "${input:entity-secret}",
        "CIRCLE_WALLET_ID": "${input:circle-wallet-id}",
        "CIRCLE_WALLET_ADDRESS": "${input:circle-wallet-address}"
      }
    }
  }
}

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

BaseBounty in other clients