Bounty Board MCP Server
A working MCP server implementation in TypeScript/JavaScript that supports all major bounty operations (list/claim/submit/status). Includes example Claude conversations showing usage.
README
Bounty Board MCP Server
A working MCP server implementation in TypeScript/JavaScript implementation that supports all major bounty operations (list/claim/submit/status). This README with installation instructions includes example Claude conversations showing usage.
Features
- Working MCP server implementation — full Model Context Protocol server using
@modelcontextprotocol/sdk - Supports all major bounty operations (list/claim/submit/status) — 7 registered tools for complete bounty board interaction
- TypeScript/JavaScript implementation — written in TypeScript, runs on Bun or Node.js 18+
- list_bounties — browse all bounties with optional status filtering
- get_bounty — get full details about a specific bounty
- claim_bounty — claim an open bounty to start working on it
- submit_bounty — submit completed work with proof URL
- get_stats — view aggregate board statistics
- search_bounties — search by keyword or filter by tag
- get_leaderboard — see top bounty hunters ranked by earnings
Setup
Prerequisites
- Bun or Node.js 18+
- Claude Desktop (or any MCP-compatible client)
Install Dependencies
bun install
Build (for Node.js)
bun run build
Claude Desktop Configuration
Add this to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Using Bun (recommended)
{
"mcpServers": {
"bounty-board": {
"command": "bun",
"args": ["run", "/absolute/path/to/bounty-mcp-server/src/index.ts"],
"env": {
"WALLET_ADDRESS": "0xYourWalletAddressHere"
}
}
}
}
Using Node.js (after building)
{
"mcpServers": {
"bounty-board": {
"command": "node",
"args": ["/absolute/path/to/bounty-mcp-server/dist/index.js"],
"env": {
"WALLET_ADDRESS": "0xYourWalletAddressHere"
}
}
}
}
Environment Variables
| Variable | Required | Description |
|---|---|---|
WALLET_ADDRESS |
For claim/submit | Your wallet address for claiming and submitting bounties |
Usage Examples
Once configured, you can interact with the bounty board through Claude:
Example Claude Conversations Showing Usage
Discover Bounties
"Show me all open bounties" "What bounties are available with the 'typescript' tag?" "Search for bounties related to dashboards"
Inspect a Bounty
"Get details on bounty #42" "What are the requirements for bounty #98?"
Claim and Submit
"Claim bounty #24 for me" "Submit my work for bounty #24 -- I built an MCP server, here's the repo: https://github.com/user/repo"
Statistics
"What are the current bounty board stats?" "Show me the top earners leaderboard"
Architecture
src/
index.ts -- MCP server setup, tool registration, stdio transport
tools.ts -- Tool definitions (schemas + descriptions) and handler implementations
The server uses the @modelcontextprotocol/sdk to expose tools via the stdio transport. Each tool has:
- A descriptive name and explanation for agent discovery
- A Zod input schema with per-field descriptions
- An async handler that calls the Bounty Board API and returns formatted results
API Endpoints Used
GET /bounties-- List all bountiesGET /stats-- Board statisticsPOST /bounties/:id/claim-- Claim a bountyPOST /bounties/:id/submit-- Submit work
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.