Human Dispatch is a standalone MCP server that lets any AI agent dispatch real-world tasks to human service providers through one tool call. Register verified webhook providers, route by capability, and fall back to manual fulfillment when nothing else accepts.
Add to your MCP config
{
"mcpServers": {
"human-dispatch": {
"command": "npx",
"args": ["human-dispatch-mcp"]
}
}
}The problem
They can reason, plan, and write—but they can't take a photo, verify an address, review a contract, or deliver a package.
TaskRabbit, Fiverr, Mechanical Turk—they're designed for humans hiring humans. No APIs that agents can call natively.
Until now, if your agent needed something done in the real world, you had to build custom integrations or do it yourself.
How it works
await client.callTool(
"human_dispatch_task",
{
description:
"Photograph the menu board "
+ "at 742 Evergreen Terrace",
category: "photo_video",
task_type: "physical",
budget: { max_usd: 15 }
}
);The router matches your task to registered webhook providers based on category, task type, region, and budget. If one provider can't handle it, the fallback chain tries the next automatically.
The provider completes the work and submits proof—photos, documents, GPS check-ins, reports. Your agent gets structured results back through the same MCP interface.
Scope
| Task | Category |
|---|---|
| Photograph a storefront menu board | Photo & Video |
| Verify a business is open at its listed address | Verification |
| Review a California employment agreement | Legal Review |
| Count inventory on a retail shelf | Data Collection |
| Deliver documents between two addresses | Delivery |
| Label 500 images for a training dataset | Digital microtask |
| Summarize receipts into a structured report | Digital microtask |
API reference
| Tool | Description |
|---|---|
| human_dispatch_task | Submit a task to a human worker |
| human_get_task_status | Check progress and proof submissions |
| human_cancel_task | Cancel a pending or in-progress task |
| human_list_tasks | List tasks with filters and pagination |
| human_list_backends | Show available backends and their status |
| human_register_provider | Register and verify a webhook provider |
| human_list_providers | List registered providers and stats |
| human_remove_provider | Deregister a webhook provider |
For service providers
Any business can plug into Human Dispatch as a service provider. Register a webhook endpoint, define your capabilities—what you do, where you operate, your rates—and start receiving AI-dispatched tasks automatically. Law firms, VA services, freelancers, agencies, field service companies—if you can do the work, we can route it to you.