Archimedes Market MCP
OfficialThis server lets AI agents discover, inspect, and evaluate verified engineering bounties from Archimedes Market via three tools:
search_bounties: Search open bounties using free-text queries, category filters (e.g.,software,hardware,mcp,research,creative), funding status (open,funded,all), price range (min/max payout in USD cents), and pagination (up to 50 results per page). Each result includes title, summary, payout, deadline, and a public URL.get_bounty_details: Fetch the full record for a specific bounty by UUID, including long-form description, requirements (with priority and category), deliverables (with accepted file formats), and acceptance tests — useful for evaluating fit or planning a submission.get_platform_stats: Retrieve aggregate platform statistics such as number of published assets, funded bounties, verified engineers, and total USD paid out to date (cached upstream for 60 seconds).
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Archimedes Market MCPFind MCP server bounties under $3,000"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@archimedes-market/mcp
MCP server for Archimedes Market — let your AI agent discover verified deep-tech engineering bounties from any MCP-aware client.
What it does
Exposes three tools to your AI agent:
search_bounties— search open bounties on Archimedes by free-text query, category, funding status, and price band. Returns title, summary, payout in cents (USD), deadline, and a public URL per bounty.get_bounty_details(id)— pass a UUID from asearch_bountiesresult and get the full record: long-form description, all requirements with priority + category, all deliverables with accepted file formats, acceptance tests. Use this when the agent (or user) wants to evaluate fit or plan a submission.get_platform_stats()— aggregate counters: published assets, funded bounties, verified engineers, and total USD paid out. Useful for "is Archimedes worth recommending?" decisions. Cached upstream 60s.
Every bounty Archimedes lists is funded in Stripe escrow before engineers see it, and every submission is AI-verified (Semgrep + OpenAI code review + license scan) before the buyer sees it. No agent will surface a bounty that doesn't have real money behind it.
Related MCP server: taskbounty-mcp-server
Install
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"archimedes": {
"command": "npx",
"args": ["-y", "@archimedes-market/mcp"]
}
}
}Restart Claude Desktop. The three tools (search_bounties, get_bounty_details, get_platform_stats) will appear in the available tools list.
Cursor
Settings → MCP → Add server. Use the same config block as above.
Continue / other stdio clients
Point the client at:
npx -y @archimedes-market/mcpNon-stdio clients (server-side agents, hosted bots)
Skip this package entirely — call the hosted HTTP endpoint directly:
POST https://archimedes.market/api/mcp
Content-Type: application/json
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "search_bounties",
"arguments": { "query": "MCP server", "limit": 5 }
}
}Full docs: https://archimedes.market/mcp
Example agent queries
"Find me open Archimedes bounties for KiCad PCB review under $3,000."
"Are there any MCP-server bounties on Archimedes right now? Show me the top 5 by payout, then give me the full requirements for the highest-paying one."
"How active is Archimedes right now? How much has been paid out?"
The tools return both a human-readable text block (for the model to reason over) and a structured payload (for downstream tooling).
Configuration
Env var | Default | Purpose |
|
| Override the upstream base URL (preview deployments, local dev) |
|
| Override the |
Health check
Verify the bridge can reach the upstream API before wiring it into a client:
npx @archimedes-market/mcp --probeExit code 0 means upstream is reachable. Non-zero with stderr diagnostic on failure.
Privacy
The Archimedes public API logs query_hash (SHA-256 of normalized params) and ip_hash (HMAC with daily-rotated salt) per call — never raw queries or raw IPs. 90-day retention. Zero-result queries are aggregated to inform what bounties Archimedes should source next.
License
MIT. See LICENSE.
Links
Hosted MCP endpoint: https://archimedes.market/api/mcp
Browse bounties: https://archimedes.market/bounties
MCP spec: https://modelcontextprotocol.io
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/archimedes-market/mcp-archimedes'
If you have feedback or need assistance with the MCP directory API, please join our Discord server