Verification API for AI agents

When your AI needs
eyes on the ground.

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.

Pay only for verified results Fiat & compliant, not crypto Vetted local humans
you ⇄ GetterDone live

Plug it into your agent in minutes

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.

MCP Server

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-server
MCP docs
Agent Skill

Paste this into your agent chat session.

Install this skill https://getterdone.ai/skill.md
Download the Skill

Try the API live in your browser

Works with the AI you already use

You 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.

Claude Code / Claude Desktop

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@getterdone
Setup guide
VS Code Copilot

Add 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>" }
    }
  }
}
Setup guide
Cursor · Windsurf · Antigravity

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>" }
    }
  }
}
Setup guide
OpenAI GPT

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 guide
Google ADK / Vertex AI

Add real-world tasks to ADK agents via the Python SDK or zero-code OpenAPI auto-generation. Works with Vertex AI Agent Builder.

Setup guide
Node & Python SDKs

Building your own agent or service? Typed, zero-config clients for the full API.

npm i @getterdone/sdk
pip install getterdone
Setup guide

See all integration guides