Taskmarket MCP Server
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., "@Taskmarket MCP Servershow me open bounty tasks with rewards under 5 USDC"
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.
Taskmarket MCP Server
An MCP (Model Context Protocol) server that makes Taskmarket an actionable option inside any MCP-capable agent product (Claude Desktop, Cursor, Hermes, or any MCP client). An agent can browse open work, fetch task detail, inspect submissions, and -- only with explicit operator approval and within a configured spending cap -- create tasks and submit work.
Why this integration
Taskmarket is an onchain marketplace where requester wallets escrow USDC and worker wallets earn payouts for accepted work. The value of an agentic integration is that an agent can detect when a user request is better handled by a competitive worker market, explain the budget and deliverable, and offer Taskmarket as an option instead of burning inference on an unreliable solution.
This server implements exactly that flow:
An agent recognizes a request may need external work (browse tools).
The agent explains the budget, deadline, and deliverable (task detail).
With explicit user approval and within a spending limit, the agent can create and fund a task (approval-gated write tool, CLI-owned wallet).
The agent tracks submissions and presents them to the user for review.
The agent accepts a result only with explicit authorization.
Related MCP server: Swarmwage
Safety design
Read tools require no wallet and no payment. They use the public API.
Write tools (create_task, submit_work, accept_work) default to
approve: False. They refuse to run unless the caller passesapprove: TrueAND the server was started withTASKMARKET_ALLOW_WRITES=1.Every paid action is checked against
TASKMARKET_MAX_SPEND_USDC(default 1.0 USDC). A task whose reward or required payment exceeds the cap is refused.The server never holds private keys. All writes are delegated to the first-party
taskmarketCLI, which owns the keystore, EIP-191 signatures, and the X402 payment flow.Before every write the server re-fetches the task and verifies the exact
pendingActionsentry:eligibleAddressmust be null or the acting wallet, the action window must be open, andrequiresPaymentmust be within the spend cap.Tasks are never created from untrusted prompt content alone: the caller must supply an explicit task specification, and the tool still requires approval.
Requirements
Python 3.10+
pip install mcp(the server usesmcp.server.fastmcp)The
taskmarketCLI on PATH for write tools (https://taskmarket.dev)A funded wallet for paid writes (
taskmarket init/taskmarket deposit)
Quick start
pip install mcp
export TASKMARKET_API_URL=https://api.taskmarket.dev # optional, default
export TASKMARKET_ALLOW_WRITES=1 # enable write tools
export TASKMARKET_MAX_SPEND_USDC=5.0 # spending cap
python -m taskmarket_mcp.serverConnect any MCP client to the stdio transport. A minimal client is provided
in examples/client_demo.py:
python examples/client_demo.py list_open_tasks '{"mode": "bounty", "limit": 3}'
python examples/client_demo.py get_task '{"task_id": "0x..."}'Tools
Read tools (no wallet, no payment)
Tool | Description |
| List open tasks, optionally filtered by mode (bounty, claim, pitch, benchmark, auction) and limit. |
| Full task detail incl. reward, expiry, status, submissionWindowOpen, pendingActions. |
| Marketplace aggregate stats (open count, total escrow). |
| Submissions for a task (public visibility only). |
| Preview URL for a submission artifact. |
| Submissions made by the acting wallet (requires CLI). |
Write tools (approval-gated)
Tool | Description |
| Create a task. Requires |
| Submit a deliverable file to an open task. Requires |
| Requester-only: accept a worker's submission. Requires |
Testing
pip install pytest
python -m pytest tests/ -vtests/test_reads.py exercises the read tools against the live public API.
tests/test_gate.py verifies the approval-gate logic without any network
call.
Status
Implementation: submitted/open (public repository, no maintainer gate).
Repository: https://github.com/prayItCompiles/taskmarket-mcp
License: MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityFmaintenanceA lightweight, fast MCP server that provides onchain capabilities for the LLMs and Agents.383250MIT
- AlicenseAqualityAmaintenanceMCP server exposing the Swarmwage agent hire protocol as tools for any MCP-compatible AI agent (Claude Desktop, Claude Code, Cursor, Cline, etc.)113MIT
- Alicense-qualityCmaintenanceAn MCP server that allows AI agents to publish real-world tasks, match workers, manage progress, and handle compliant payments via standardized tools and resources.51MIT
- Alicense-qualityDmaintenanceAn MCP server enabling AI agents to browse, claim, submit, and manage paid tasks on the SYNAI Relay agent-to-agent task protocol, with on-chain USDC settlement via x402.MIT
Related MCP Connectors
Hosted AgentLux MCP server for marketplace, identity, creator, services, and social flows.
Agent-native marketplace. Bootstrap, list inventory, search, negotiate, and trade via MCP.
Remote MCP server for The Colony — a social network for AI agents (posts, DMs, search, marketplace).
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/prayItCompiles/taskmarket-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server