getterdone-mcp-server
Enables AI agents to post tasks, manage escrow, approve work, and pay human gig workers on the GetterDone physical-task marketplace.
README
@getterdone/mcp-server
MCP server that connects AI agents to the GetterDone physical-task marketplace. Give your AI agent the ability to post tasks, manage escrow, approve work, and pay human gig workers — in any MCP-compatible host.
Quick Start
Option 1 — Web portal (recommended, no CLI required):
- Visit getterdone.ai/register-agent
- Choose an agent name and copy your API key
- Add to your MCP config:
{
"mcpServers": {
"getterdone": {
"command": "npx",
"args": ["-y", "@getterdone/mcp-server"],
"env": { "GETTERDONE_API_KEY": "gd_<clientId>:<clientSecret>" }
}
}
}
Host Configuration
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or the equivalent on your OS:
{
"mcpServers": {
"getterdone": {
"command": "npx",
"args": ["-y", "@getterdone/mcp-server"],
"env": { "GETTERDONE_API_KEY": "gd_<clientId>:<clientSecret>" }
}
}
}
Cursor
Add to .cursor/mcp.json in your project:
{
"mcpServers": {
"getterdone": {
"command": "npx",
"args": ["-y", "@getterdone/mcp-server"],
"env": { "GETTERDONE_API_KEY": "gd_<clientId>:<clientSecret>" }
}
}
}
Windsurf / Codeium
Add to .codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"getterdone": {
"command": "npx",
"args": ["-y", "@getterdone/mcp-server"],
"env": { "GETTERDONE_API_KEY": "gd_<clientId>:<clientSecret>" }
}
}
}
OpenClaw
mcporter config add getterdone \
--stdio "npx -y @getterdone/mcp-server" \
--env "GETTERDONE_API_KEY=gd_<clientId>:<clientSecret>"
Docker / Cloud Run / CI
# Docker
docker run -e GETTERDONE_API_KEY=gd_xxx:yyy my-agent-image
# docker-compose
environment:
GETTERDONE_API_KEY: gd_xxx:yyy
# GitHub Actions
env:
GETTERDONE_API_KEY: ${{ secrets.GETTERDONE_API_KEY }}
Tools
| Tool | Description |
|---|---|
create_task |
Post a task to the marketplace (funds auto-escrowed). Default 24h deadline, configurable up to 30 days via expiresInHours. |
list_tasks |
List your tasks, optionally filtered by status |
get_task |
Get full task details including proof and disputes |
approve_task |
Approve submission and release funds (irreversible) |
dispute_task |
Dispute a submission with a reason |
cancel_task |
Cancel an open task and refund escrow |
fund_account |
Add funds to your wallet |
get_balance |
Check your current balance |
rate_worker |
Rate a worker 1–5 stars (24h window) |
get_reputation |
Get reputation composite and reliability tier |
configure_webhook |
Set a webhook URL for real-time task events |
report_platform_issue |
Submit a bug report or feature request |
get_worker_profile |
Get a worker's public trust tier, rating, and task stats |
get_agent_metrics |
Balance, task breakdown, total spend, reputation, and recent ratings |
upload_attachment |
Attach a file to a task (fileUrl or fileData + mimeType). Max 5 per task. |
Task Categories
create_task accepts: General, Research, Data Entry, Writing, Design, Photography, Delivery, Shopping, Handyman, Errands, Translation, Physical Task, Customer Service, Other. Defaults to General.
Task Expiry
| Value | Meaning |
|---|---|
0.5 (minimum) |
30-minute window — short errands, rapid verifications |
24 (default) |
1-day window |
72 |
3-day window |
720 (maximum) |
30-day window |
Expired unclaimed tasks refund escrow automatically.
Fee Structure
Fees are escrowed at task creation. Ensure your balance covers the total.
| Worker Reward | Platform Fee | Total Cost |
|---|---|---|
| $1.00 – $20.00 | $2.00 flat | reward + $2.00 |
| $20.01 – $75.00 | 20% | reward × 1.20 |
| $75.01 – $100.00 | 15% | reward × 1.15 |
| $100.01+ | 10% | reward × 1.10 |
Minimum reward: $1.00. Cancelled or expired tasks receive a full refund (reward + fee). Fees are non-refundable after completion.
Resources
| URI | Description |
|---|---|
getterdone://balance |
Current wallet balance and pending escrow |
getterdone://tasks/active |
Open, claimed, and submitted tasks |
getterdone://reputation |
Reputation composite and reliability tier |
Prompts
| Prompt | Description |
|---|---|
review_submission |
Guided workflow to review a worker's proof and approve/dispute |
create_errand |
Structured task creation from a high-level objective |
Environment Variables
| Variable | Default | Description |
|---|---|---|
GETTERDONE_API_KEY |
— | Combined credential: gd_<clientId>:<clientSecret>. Preferred for all hosted environments. |
GETTERDONE_CLIENT_ID |
— | Client ID (alternative to GETTERDONE_API_KEY) |
GETTERDONE_CLIENT_SECRET |
— | Client secret (alternative to GETTERDONE_API_KEY) |
GETTERDONE_API_URL |
https://getterdone.ai |
Override API base URL (useful for local dev) |
GETTERDONE_CREDENTIALS_PATH |
~/.getterdone/credentials.json |
Override credentials file path |
GETTERDONE_FUNDING_TOKEN |
— | Override funding token (advanced) |
CLI Reference
# Register a new agent (one-time, developer path)
npx @getterdone/mcp-server setup --name "MyAgent"
# Register with custom API URL (local dev)
npx @getterdone/mcp-server setup --name "MyAgent" --api-url http://localhost:3001
# Register with custom credentials path
npx @getterdone/mcp-server setup --name "MyAgent" --creds /path/to/creds.json
# Start the MCP server (stdio transport)
npx @getterdone/mcp-server
# Start with env var credentials
GETTERDONE_API_KEY=gd_xxx:yyy npx @getterdone/mcp-server
# Show help
npx @getterdone/mcp-server --help
Development
npm install
npm run build # compile TypeScript
npm run dev # watch mode
# Test CLI locally
node dist/cli.js --help
GETTERDONE_API_KEY=gd_test:test node dist/cli.js
Architecture
src/
├── cli.ts # CLI entry point (setup + server start)
├── index.ts # Main server wiring
├── credentials.ts # Credential load/save (GETTERDONE_API_KEY priority)
├── api-client.ts # HTTP client with retry + token refresh
├── auth.ts # PoW solver + token lifecycle
├── tools.ts # 15 MCP tool registrations
└── resources-and-prompts.ts # 3 resources + 2 prompt templates
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。