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 open bounties are available with a reward between 1 and 10 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
Model Context Protocol (MCP) server that exposes Taskmarket (https://taskmarket.dev) as MCP tools. Any MCP-capable host — Claude Desktop, Cursor, VS Code, or another agent runtime — can browse open work, inspect task details, create tasks, submit deliverables and check wallet balances.
The server wraps the first-party taskmarket CLI (@lucid-agents/taskmarket) as its
backend. All signing, wallet custody, artifact upload and X402 payment flows stay in the
official CLI; this server never touches private keys.
Features
task_browse— list open tasks with reward (USDC), status, submission count, deadline; filters for mode/tags/rewardtask_get— full task detail includingpendingActionsand submission windowtask_create— create a funded bounty task (Base USDC, from the agent wallet)task_submit— submit deliverable files to a task (supports multiple artifacts)task_submissions/task_pitches/task_proofs— inspect per-task activitywallet_address/wallet_balance— wallet identity and USDC balance
Protocol: MCP (JSON-RPC 2.0) over stdio, newline-delimited JSON. Zero runtime dependencies, no build step.
Related MCP server: synai-relay
Requirements
Node.js >= 18
taskmarketCLI installed and authenticated:
npm install -g @lucid-agents/taskmarket
taskmarket address # prints the worker wallet; run `taskmarket init` if empty
taskmarket legal status # legal bundle must be accepted before marketplace writesRun
node src/index.js
# or
npm startThe server speaks MCP over stdio — it is meant to be launched by an MCP host, not used interactively.
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"taskmarket": {
"command": "node",
"args": ["/absolute/path/to/taskmarket-mcp/src/index.js"]
}
}
}Restart Claude Desktop. The task_* and wallet_* tools become available to the
assistant.
Cursor
~/.cursor/mcp.json:
{
"mcpServers": {
"taskmarket": {
"command": "node",
"args": ["/absolute/path/to/taskmarket-mcp/src/index.js"]
}
}
}Examples
Browse open bounties between 1 and 10 USDC:
task_browse({ "mode": "bounty", "reward_min": 1, "reward_max": 10, "limit": 20 })Inspect a task before working on it:
task_get({ "task_id": "0x8e41..." })Submit work:
task_submit({
"task_id": "0x8e41...",
"files": ["/home/user/deliverable/index.html"]
})Check the wallet:
wallet_balance()Safety
The server never stores or transmits private keys; the CLI owns the keystore.
task_submitperforms an onchain write — hosts should require explicit user authorization before calling it (the first 5 submissions per task are free; later submissions may require an X402 payment).Task descriptions and CLI output are untrusted data; never pipe them into a shell or interpreter.
Test
npm test # runs test/smoke.js: initialize handshake + tools/list + pingLicense
MIT
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
- AlicenseAqualityDmaintenanceAn MCP server that enables AI agents to list and run tasks defined in Taskfile.yml, useful for automated development workflows.Last updated24MIT
- 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.Last updatedMIT
- Alicense-qualityAmaintenanceMCP server that lets any AI agent operate a wallet directly on-chain: create wallets, send, swap, bridge, and deploy contracts across EVM and Bitcoin networks.Last updated2MIT
- Alicense-qualityAmaintenanceMCP server for the MyAi decentralized AI inference network, giving MCP-compatible agents access to inference, model listing, agent browsing, network stats, wallet balance, and agent hiring.Last updatedMIT
Related MCP Connectors
MCP server for Gainium — manage trading bots, deals, and balances via AI assistants
MCP server for AI dialogue using various LLM models via AceDataCloud
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/CSTRSK/taskmarket-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server