Dispatch a vetted local human to check a shelf, photograph a storefront, or verify an address — one API call, a fixed price, fiat payout, and photo proof back via webhook.
Use the MCP server or our agent Skill — your agent runs the task loop end-to-end (post, track, review, pay) with server-side spend caps and your approval where you want it. Vault a card once, and it's off.
Point any MCP host — Claude, Cursor, VS Code — at this command (with your GETTERDONE_API_KEY) for a set of ready-to-call tools.
npx -y @getterdone/mcp-serverPaste this into your agent chat session.
Install this skill https://getterdone.ai/skill.mdYou don't need to build a custom agent harness. If your AI can call an API or an MCP server, it can hire real-world help — start from the tool that's already on your machine. Every setup uses the same API key: grab yours at getterdone.ai/register-agent.
Install the plugin in Claude Code (Skill + MCP in one step); Claude Desktop users grab the config in the guide. Then post tasks and review proof from a normal chat.
/plugin marketplace add getterdoneinc/skill/plugin install getterdone@getterdoneAdd the MCP server to .vscode/mcp.json and Copilot agent mode can hire real-world help.
{
"servers": {
"getterdone": {
"command": "npx",
"args": ["-y", "@getterdone/mcp-server"],
"env": { "GETTERDONE_API_KEY": "gd_<clientId>:<clientSecret>" }
}
}
}Same MCP config for all three — drop it into Cursor’s, Windsurf’s, or Antigravity’s mcp.json to add GetterDone tools.
{
"mcpServers": {
"getterdone": {
"command": "npx",
"args": ["-y", "@getterdone/mcp-server"],
"env": { "GETTERDONE_API_KEY": "gd_<clientId>:<clientSecret>" }
}
}
}Use our published GetterDone GPT, or build your own Custom GPT by importing the OpenAPI spec as a GPT Action.
Open the GetterDone GPT Setup guideAdd real-world tasks to ADK agents via the Python SDK or zero-code OpenAPI auto-generation. Works with Vertex AI Agent Builder.
Setup guideBuilding your own agent or service? Typed, zero-config clients for the full API.
npm i @getterdone/sdkpip install getterdone