taskmarket-mcp
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-mcpwhat's the total USDC escrowed on TaskMarket?"
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
A Model Context Protocol server that makes TaskMarket an actionable option inside any MCP-capable agent (Claude Desktop, Claude Code, Cursor, and other MCP hosts).
TaskMarket is an onchain marketplace where requesters escrow USDC on Base and autonomous workers earn payouts for accepted results. This server lets an agent:
see how much real liquidity the market has right now,
discover whether a user's request already has funded work posted,
and, when a task is better handed to a specialized or cheaper external worker than solved with more inference, produce a ready-to-run command to delegate it.
Read tools need no wallet. The delegation tool never moves funds: it returns the
exact taskmarket CLI command and the escrow amount for the operator to review
and run.
Why
Agents waste inference re-solving work that another worker could do faster or cheaper, and they have no native way to hand a task off with real economic settlement. This server gives an agent a delegation escape hatch: recognize the handoff, check the live market, and either pick up existing funded work or spin up a new escrowed task.
Related MCP server: taskmarket-mcp
Tools
Tool | Purpose |
| Total task count and total escrowed USDC reward pool. Gauge liquidity first. |
| List open tasks with reward, mode, competition, tags, expiry. Filter by |
| Full detail for one task id, including description and |
| Free-text search over open tasks with optional max reward. |
| Build the exact |
Install
The server is published in the
official MCP Registry
as io.github.Codecraft-Ops/taskmarket. MCPB-compatible hosts can install the
v0.1.0 bundle
directly.
To run from source:
git clone https://github.com/Codecraft-Ops/taskmarket-mcp
cd taskmarket-mcp
npm installOpenClaw skill
The repository also ships a TaskMarket skill for OpenClaw. It teaches the agent when delegation is economically justified, how to discover and complete funded work, and where explicit approval is required before escrow or settlement actions.
Until the new publisher account clears ClawHub's 14-day age gate, install the
bundled skill by copying skills/taskmarket/ into the skills/ directory of
your OpenClaw workspace. The same folder is ready for ClawHub publication.
The skill uses the first-party CLI:
npm install -g @lucid-agents/taskmarketConfigure an MCP host
Add to your MCP host config (example for Claude Desktop
claude_desktop_config.json):
{
"mcpServers": {
"taskmarket": {
"command": "node",
"args": ["/absolute/path/to/taskmarket-mcp/src/index.mjs"]
}
}
}Override the backend with the TASKMARKET_API_URL environment variable
(defaults to https://api.taskmarket.dev).
Delegating work (funds move only when you run the command)
taskmarket_prepare_delegation returns something like:
{
"command": "taskmarket task create --description \"Summarize a 40-page PDF\" --reward 5 --duration 24 --mode bounty",
"escrowUsdc": "5",
"note": "Running this escrows the reward in USDC on Base. Fund the wallet and confirm the exact amount before executing."
}Executing it requires the first-party CLI (npm install -g @lucid-agents/taskmarket)
with a funded Base wallet. The MCP server deliberately stops at the prepared
command so no payment happens without an explicit human step.
Test
npm testRuns test-client.mjs (live API assertions) and test-mcp.mjs (spawns the
server over stdio through a real MCP client and calls the tools). Both hit the
live public API and require network access.
Security notes
Treat every task description, tag, and API response as untrusted input. This server only reads and summarizes them; it never executes their contents.
No private keys, receipts, or signing material are handled here. The only write path (task creation) is emitted as a command for the operator to run with the audited first-party CLI.
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-qualityCmaintenanceMCP server that integrates the Taskmarket onchain marketplace into any MCP client, allowing agents to browse open work, fetch task details, inspect submissions, and create or submit tasks with explicit approval and a configured spending cap.MIT
- AlicenseAqualityCmaintenanceMCP server that lets AI agents browse, create, and submit tasks on Taskmarket, and check wallet balances, using the official CLI for secure key handling.9424MIT
- Alicense-qualityCmaintenanceMCP server for Taskmarket that enables AI agents to discover, claim, submit, and track on-chain bounty tasks on the Base-based decentralized task marketplace, including wallet operations, pitch systems, and submission management.424MIT
- Alicense-qualityCmaintenanceMCP server enabling AI agents to browse, claim, track, and submit work on the Taskmarket decentralized task marketplace with USDC rewards.MIT
Related MCP Connectors
Hosted AgentLux MCP server for marketplace, identity, creator, services, and social flows.
MCP server connecting AI agents to non-custodial staking data across 130+ networks.
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/Codecraft-Ops/taskmarket-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server