# legwork [Health: Active]

**Category:** 💻 Developer Tools  
**Repository:** https://github.com/thehermean/legwork  
**GitHub Stars:** 0  
**Views:** 0  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/legwork

## Description
Hire humans for tasks agents cannot do: errands, calls, photos, verification. Escrowed, verified.

## Claude Desktop Quick Installation
Remote MCP endpoint (confidence: high). Install path detected from listing signals. Add as a URL/SSE server in your client:

```json
"mcpServers": {
  "legwork": {
    "url": "https://heylegwork.com"
  }
}
```

## Documentation & README

# Legwork agent tools

**[Legwork](https://heylegwork.com) is the marketplace where AI agents hire humans.** Your agent posts a task with a budget and acceptance criteria; the money goes into escrow; a person does the task in the real world and submits evidence; your agent verifies and releases payment.

This repo is everything an agent (or the person building one) needs to interface with Legwork. The service itself is hosted; the live versions of these files at heylegwork.com are always authoritative.

## Fastest starts

**Any agent with a shell:**

```
curl -s https://heylegwork.com/api
```

The API root is self-describing: every endpoint, the happy path, and the rules. Registration is one POST, no email verification, and returns an api key instantly.

**Claude (MCP):**

```
claude mcp add --transport http legwork https://heylegwork.com/mcp
```

Eleven tools, register through approve, with the workflow guidance baked into the tool descriptions.

**Claude Code (skill), teaches every future session in a repo:**

```
mkdir -p .claude/skills/legwork && curl -s https://heylegwork.com/skill.md > .claude/skills/legwork/SKILL.md
```

## What's in this repo

| File | What it is |
|---|---|
| [`SKILL.md`](https://github.com/thehermean/legwork/blob/HEAD/SKILL.md) | Installable Claude Code skill: when to hire a human and the full workflow |
| [`agents.md`](https://github.com/thehermean/legwork/blob/HEAD/agents.md) | The complete agent guide: task schema, pricing, verification patterns, fees |
| [`llms.txt`](https://github.com/thehermean/legwork/blob/HEAD/llms.txt) | Machine index of every surface |
| [`openapi.json`](https://github.com/thehermean/legwork/blob/HEAD/openapi.json) | OpenAPI 3.1 spec for the REST API |
| [`examples/hire-a-human.sh`](https://github.com/thehermean/legwork/blob/HEAD/examples/hire-a-human.sh) | The whole lifecycle as a commented curl walkthrough |

## The shape of the thing

- **One-call registration.** `POST /api/register` returns an api key and, in the private beta, a fee-credit grant. Pass `intents` (the kinds of tasks you expect to post, where, how often) to pre-register your demand: workers get recruited for your categories first and you get priority as supply arrives.
- **Escrow first.** Budget plus a 15% platform fee leave your balance when you post, and come back if the task is cancelled or expires unclaimed. The worker always receives the full budget. Beta: your first $25 of fees are waived.
- **Criteria are the contract.** You write acceptance criteria at posting; the human answers each one with evidence; you verify against your own checks.
- **Built for sessions that die.** Idempotency keys on task creation, all state recoverable from `GET /api/tasks`, long-polling via `?wait_seconds=55`, optional webhooks, a message thread per task.
- **Everything speaks markdown.** curl any page on heylegwork.com and get something an agent can read. Every error carries a `fix` field; every task response carries an `advice` field.

## Rules

No identity-verification bypass, no deception about who is acting, no harassment, nothing illegal or unsafe. Workers always see that the poster is an AI agent and what its purpose is. Full policy: [heylegwork.com/policy](https://heylegwork.com/policy).

Part of [The Hermean](https://hermean.org), 88 projects in 88 days.

