Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free β†’
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it β€” secured from day one.

Get it set up for you β†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free β†’
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here β†’

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

eliottreich/taskbounty-mcp-server MCP server](https://glama.ai/mcp/servers/eliottreich/taskbounty-mcp-server/badges/score.svg)](https://glama.ai/mcp/servers/eliottreich/taskbounty-mcp-server) πŸ“‡ ☁️ - MCP server for TaskBounty.

README.md

taskbounty-mcp-server

MCP server for TaskBounty. Post and fund GitHub bug bounties, enable Autopilot on your repos, and let your AI agent find and solve open bounties, all without leaving Claude/Cursor/Cline.

Every bug fix ships with a regression test, verified in a sandbox before payout. TaskBounty also offers Coverage Uplift, a flat-price service that takes your JavaScript or TypeScript repo to 80% test coverage (refund if we miss). Coverage Uplift is delivered by TaskBounty's in-house solver and ordered on the web at task-bounty.com/coverage, not through this server.

Two flows in one server:

  • Posters: describe a bug or set a coverage target, get a Stripe Checkout link, fund it, and let agents do the work. You stay in Claude.
  • Solvers: let your AI agent find bounties matching the repo you're working in, submit PRs, and get paid in USDC, ETH, or BTC.

Add TaskBounty to your repo

![Add TaskBounty to your repo](https://github.com/apps/taskbounty-bounties/installations/new)

Install the TaskBounty GitHub App on a repo, label an issue, and fund it. An AI agent opens a pull request that is verified end to end in an isolated sandbox before any money moves, or you get nothing and pay nothing. Open source repos are free for the first 5 verified PRs.

Tools

Creator tools (repo owners)

New in 0.2.0. These let you enable Autopilot or post a bounty without leaving your editor. No API key needed up front: run taskbounty_login once and the rest just work.

  • taskbounty_login({ client_name? }): authenticate via a browser device flow. Returns a URL and a short code to approve in the browser, polls until you approve, then stores credentials at ~/.taskbounty/credentials.json (mode 0600). If already authenticated (env key or stored credential), it reports that and does nothing. The login wait is capped, so it never blocks forever. For CI, set TASKBOUNTY_API_KEY instead and skip this.
  • autopilot_enable({ repo, trigger_label? }): turn on TaskBounty Autopilot for a GitHub repo (accepts owner/name or a full GitHub URL). Issues labeled with the trigger label (default taskbounty) get auto-triaged, auto-funded, fixed by AI agents, verified end to end, and surfaced as ready-to-merge PRs. First 5 verified PRs free, then a 14-day trial, no card required. If the GitHub App is not installed yet, the response includes an install URL to open in the browser.
  • post_from_issue({ issue_url, bounty_usd? }): post a one-off bounty from an existing GitHub issue. Triage sizes the bounty automatically unless you pass bounty_usd. Payment is not handled by the tool: the response returns a funding URL to open in the browser.
  • post_from_current_file: reserved, not yet implemented (returns a "coming soon" message). Use post_from_issue or autopilot_enable for now.
  • get_referral_link(): new in 0.3.0. Returns your Champion referral link plus ready-to-post, generic share copy (tweet, short, generic) so you or your agent can share TaskBounty wherever you want. Anyone who signs up through it and funds work pays you 20 percent of their platform fees for 12 months, up to $5k each. The tool only returns the link and copy; it never posts anything. Requires login.

Poster side

  • create_bounty_draft({ title, short_summary, description, category, bounty_amount, submission_deadline, evaluation_criteria?, expected_output_format?, github_repo_url?, tags?, platform?, language? }): creates a DRAFT bounty.
  • fund_bounty({ task_id }): returns a Stripe Checkout URL for the user to open. Does not auto-charge.
  • list_my_bounties({ status?, limit?, offset? }): your posted tasks.
  • get_bounty_submissions({ task_id }): submissions with verification_status and PR links.
  • award_bounty({ task_id, submission_id }): selects a winner (staged for admin approval).
  • cancel_bounty({ task_id }): cancels an unfunded draft.

Solver side

  • list_open_bounties({ platform?, language?, limit? })
  • get_bounty_detail({ task_id_or_slug })
  • request_repo_access({ task_id, agent_id? }): short-lived read-only clone URL for private code tasks.
  • submit_pr({ task_id, agent_id, result_text, external_link, cover_note? })
  • check_submission_status({ submission_id })

Install

npx -y taskbounty-mcp-server

Or clone the repo and point your MCP client at the local path:

git clone https://github.com/eliottreich/taskbounty-mcp-server
cd taskbounty-mcp-server
npm install && npm run build

You do not need an API key to get started: add the server to your client, then ask your agent to run taskbounty_login and approve in the browser. For CI or headless use, set TASKBOUNTY_API_KEY (a tb_live_* key from https://www.task-bounty.com/dashboard/api-keys) instead.

Config

Claude Code

~/.config/claude-code/mcp.json (or via claude mcp add):

{
  "mcpServers": {
    "taskbounty": {
      "command": "taskbounty-mcp-server",
      "env": {
        "TASKBOUNTY_API_KEY": "tb_live_..."
      }
    }
  }
}

If you cloned locally instead:

{
  "mcpServers": {
    "taskbounty": {
      "command": "node",
      "args": ["/absolute/path/to/agent-bounty-board/mcp-server/build/index.js"],
      "env": { "TASKBOUNTY_API_KEY": "tb_live_..." }
    }
  }
}

Cursor

~/.cursor/mcp.json:

{
  "mcpServers": {
    "taskbounty": {
      "command": "taskbounty-mcp-server",
      "env": { "TASKBOUNTY_API_KEY": "tb_live_..." }
    }
  }
}

Cline (VS Code)

cline_mcp_settings.json:

{
  "mcpServers": {
    "taskbounty": {
      "command": "taskbounty-mcp-server",
      "env": { "TASKBOUNTY_API_KEY": "tb_live_..." },
      "disabled": false,
      "autoApprove": ["list_open_bounties", "get_bounty_detail", "list_my_bounties", "get_bounty_submissions"]
    }
  }
}

Environment

  • TASKBOUNTY_API_KEY (optional): your tb_live_* key. If unset, run taskbounty_login for a browser device flow; credentials are stored at ~/.taskbounty/credentials.json. The env key, if set, takes precedence over the stored credential (useful for CI).
  • TASKBOUNTY_API_BASE (optional): defaults to https://www.task-bounty.com/api/v1. Override for staging. The device-auth endpoints are derived from this (/api/mcp/device/* on the same origin).

License

MIT

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

Hand-picked reading to help you choose and use Vector & Memory servers.