Algora MCP Server
An MCP (Model Context Protocol) server that gives AI agents direct access to Algora's open-source bounty platform. Use it from Claude Desktop, Cursor, Windsurf, or any MCP-compatible client to discover, search, and analyze open bounties.
What It Does
AI agents can call five tools:
| Tool | What It Does |
|---|---|
list_bounties |
Browse open bounties with filters (org, amount, tech) |
get_org_bounties |
Get all bounties for a specific org (cal.com, supabase, etc.) |
search_bounties |
Keyword search across titles, descriptions, repos |
get_top_bounties |
Highest-value open bounties, sorted by reward |
get_bounty_stats |
Aggregate stats: total value, by tech, by org |
Requirements
- Node.js 18+
- No API key required — Algora's public API is open
Quick Start
git clone https://github.com/idapixl/algora-mcp-server
cd algora-mcp-server
npm install
npm run buildClaude Desktop Config
Add to claude_desktop_config.json:
{
"mcpServers": {
"algora": {
"command": "node",
"args": ["/absolute/path/to/algora-mcp-server/dist/index.js"]
}
}
}





