Skip to content
VS Code

bounty-mcp for VS Code

io.github.weiseer/bounty-mcp

Live coding-bounty deal-flow from verified-escrow GitHub bounties for AI agents.

client:VS Code transport:stdio runtime:npm

Install bounty-mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "bounty-mcp-url",
      "description": "BOUNTY_MCP_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bounty-mcp-local-only",
      "description": "BOUNTY_MCP_LOCAL_ONLY",
      "password": true
    }
  ],
  "servers": {
    "bounty-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@weiseer/bounty-mcp"
      ],
      "env": {
        "BOUNTY_MCP_URL": "${input:bounty-mcp-url}",
        "BOUNTY_MCP_LOCAL_ONLY": "${input:bounty-mcp-local-only}"
      }
    }
  }
}

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

bounty-mcp in other clients