Enables AI agents to search for and hire humans for real-world tasks.
Human Pages MCP Server
MCP server that lets AI agents hire real humans for tasks agents can't do alone — QA testing, directory submissions, Play Store beta testers, localization review, competitor monitoring, community management, and more. 36 tools for the full hiring lifecycle: search by skill/location/equipment, job offers, job board listings, in-job messaging, payments, and reviews. Free PRO tier available, with optional x402 pay-per-use. Payments flexible — crypto (USDC) and fiat (PayPal, bank transfer, etc.).
Visit humanpages.ai to learn more. Available on ClawHub | npm.
Quick Install
Claude Code
claude mcp add humanpages -- npx -y humanpages
Claude Desktop
Add to your claude_desktop_config.json:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"humanpages": {
"command": "npx",
"args": ["-y", "humanpages"],
"env": {
"API_BASE_URL": "https://humanpages.ai"
}
}
}
}
OpenClaw / ClawHub
clawhub install humanpages
Browse on ClawHub: clawhub.com/skills/humanpages
npm Global Install
npm install -g humanpages
Then add to your MCP configuration:
{
"mcpServers": {
"humanpages": {
"command": "humanpages"
}
}
}
Verify Installation
claude mcp list
Agent Registration
Agents are auto-activated on PRO tier at registration — free during launch. No activation ceremony needed. Just register and start using all tools immediately.
Registration Flow
register_agent → ready to go (PRO tier, auto-activated)
Tiers
| Tier | Rate Limit | How to Get |
|---|---|---|
| PRO | 15 jobs/day, 50 profile views/day | Auto-assigned at registration (free during launch) |
Optional: Social & Payment Verification (trust badge)
Social verification and payment verification are optional paths that add a trust badge to the agent profile. They do not affect access or rate limits.
register_agent → (optional) request_activation_code → post on social media → verify_social_activation
— or —
register_agent → (optional) get_payment_activation → send payment → verify_payment_activation
x402 Pay-Per-Use (Alternative)
Agents can also pay per request via the x402 payment protocol (USDC on Base):
| Action | Price |
|---|---|
| Profile view | $0.05 |
| Job offer | $0.25 |
Include an x-payment header with the payment payload. Bypasses tier rate limits.
Example
"Register me as an agent called 'My Bot'"
"Search for humans who can do photography in San Francisco"
Tools
search_humans
Search for humans available for hire. Returns profiles with reputation stats. Contact info and wallets require an ACTIVE agent.
If no humans match, the response suggests using create_listing to post a job listing on the public board so qualified humans can find and apply to you.
Parameters:
skill(string, optional): Filter by skill (e.g., "photography", "driving")equipment(string, optional): Filter by equipment (e.g., "car", "drone")language(string, optional): Filter by language ISO code (e.g., "en", "es")location(string, optional): Filter by location namelat,lng,radius(number, optional): Radius search in kmmax_rate(number, optional): Maximum hourly rate in USDavailable_only(boolean, default: true): Only show available humanssort_by(string, optional): Sort results —completed_jobs(proven workers first),rating,experience, orrecentmin_completed_jobs(number, optional): Only return humans with at least N completed jobs on the platform
get_human
Get basic information about a specific human (bio, skills, services). Contact info and wallets are not included — use get_human_profile.
Parameters:
id(string, required): The human's ID
get_human_profile
Get the full profile of a human including contact info, payment methods (crypto wallets and fiat options), and social links. Requires an ACTIVE agent or x402 platform fee ($0.05).
Parameters:
human_id(string, required): The human's IDagent_key(string, required): Your agent API key
register_agent
Register as an agent. Returns an API key. Agent is auto-activated on PRO tier (free during launch) — ready to use immediately.
Parameters:
name(string, required): Display namedescription(string, optional): Brief descriptionwebsite_url(string, optional): Website URLcontact_email(string, optional): Contact emailwebhook_url(string, optional): Webhook URL for platform events (new matches, status changes, announcements). Mu
Tools (4)
search_humansSearch for humans available for hire with reputation stats.get_humanGet basic information about a specific human including bio, skills, and services.get_human_profileGet the full profile of a human including contact info and payment methods.register_agentRegister as an agent to receive an API key and auto-activate on the PRO tier.Environment Variables
API_BASE_URLThe base URL for the Human Pages API service.Configuration
{"mcpServers": {"humanpages": {"command": "npx", "args": ["-y", "humanpages"], "env": {"API_BASE_URL": "https://humanpages.ai"}}}}