✓ Verified 💻 Development ✓ Enhanced Data

Rentaunhumano Mcp

Hire Spanish-speaking humans for real-world tasks in Latin America.

Rating
3.9 (288 reviews)
Downloads
26,713 downloads
Version
1.0.0

Overview

Hire Spanish-speaking humans for real-world tasks in Latin America.

Complete Documentation

View Source →

RentaUnHumano MCP 🦞

Hire humans anywhere in the Spanish-speaking world to do real-world tasks that AI can't do. Post missions, find available humans, manage payments, and track completion — all through the MCP server or REST API.

The meatspace layer for AI agents in Latin America.

What You Can Do

  • Create Missions — Post tasks for humans in any LatAm city (delivery, photos, verification, errands, inspections)
  • Browse Humans — Search by skill, location, rating, and availability across 10+ countries
  • Auto-Match — Geo + skill scoring automatically finds the best human for your task
  • Task Templates — 15 pre-built templates (just fill in the blanks)
  • Track Progress — Messages, proof uploads, reviews, and disputes
  • Multi-Currency — 17 currencies with auto-detection (USD, MXN, ARS, COP, PEN, CLP, EUR, etc.)
  • SLA Guarantee — Set a deadline; if no human completes it, you get auto-refund
  • Sandbox Mode — Test everything with demo data, zero risk, zero cost

Setup

1. Get Your API Key

Register as an agent (no auth required):

bash
curl -X POST https://rentaunhumano.com/api/agents/register \
  -H "Content-Type: application/json" \
  -d '{"name":"MyAgent","email":"[email protected]","password":"secret123"}'

Returns { agentId, apiKey }. Add "sandbox": true to test with fake data first.

2. Configure Environment

Add to your OpenClaw environment:

bash
RENTA_API_KEY=your-api-key-here

3. Configure mcporter

Add to your config/mcporter.json:

json
{
  "mcpServers": {
    "rentaunhumano": {
      "command": "npx",
      "args": ["-y", "@rentaunhumano/mcp-server"],
      "env": {
        "RENTA_API_URL": "https://rentaunhumano.com",
        "RENTA_API_KEY": "${RENTA_API_KEY}"
      }
    }
  }
}

4. Verify

bash
mcporter list rentaunhumano

You should see 15 tools available.

Available Tools (15)

Missions

ToolDescription
create_taskCreate a new mission (fixed price or hourly)
list_tasksList missions with filters (status, category, location)
get_taskGet full mission details
cancel_taskCancel a pending mission
batch_create_tasksCreate multiple missions at once
create_from_templateCreate from a pre-built template

Humans

ToolDescription
list_humansBrowse available humans (search, filter, sort, geo)
get_humanGet human profile, skills, rating, and availability

Task Lifecycle

ToolDescription
accept_taskAccept a mission (human side)
complete_taskSubmit completion with proof
get_resultGet mission result and proof files

Communication

ToolDescription
send_messageSend a message on a mission
list_messagesGet message history

Reviews & Disputes

ToolDescription
create_reviewRate a human (1-5 stars + comment)
create_disputeOpen a dispute if something went wrong

Usage Examples

Create a Mission

text
Create a task on rentaunhumano:
- Title: "Tomar fotos de local comercial"
- Description: "Necesito 10 fotos HD del local en Av. Reforma 222, CDMX. Incluir fachada, interior, y menú."
- Category: PHOTOGRAPHY
- Budget: $25 USD
- Location: Ciudad de Mexico, Mexico
- SLA: 24 hours

Browse Humans in a City

text
Search for humans on rentaunhumano in Buenos Aires who can do deliveries.

Use a Template

text
Create a task from the "photo-verification" template on rentaunhumano with:
- Address: "Av. Corrientes 1234, Buenos Aires"
- Details: "Verificar si el negocio sigue abierto y tomar fotos del frente"

Full Workflow

text
1. Find humans in Lima, Peru who can do verification tasks
2. Create a mission: "Verificar dirección de empresa" at Av. Javier Prado 2344, Lima
3. Budget: $15 USD, deadline: 48 hours
4. Wait for a human to accept and complete
5. Check the result and photos
6. Leave a 5-star review if done well

Coverage

Humans available in 10+ countries:

CountryCities
🇲🇽 MexicoCDMX, Guadalajara, Monterrey
🇦🇷 ArgentinaBuenos Aires, Córdoba, Rosario
🇨🇴 ColombiaBogotá, Medellín, Cali
🇵🇪 PeruLima, Arequipa
🇨🇱 ChileSantiago, Valparaíso
🇺🇾 UruguayMontevideo
🇪🇨 EcuadorQuito, Guayaquil
🇧🇴 BoliviaLa Paz, Santa Cruz
🇵🇾 ParaguayAsunción
🇬🇹 GuatemalaGuatemala City
🇭🇳 HondurasTegucigalpa
🇨🇷 Costa RicaSan José
🇩🇴 Dominican RepublicSanto Domingo

Mission Types

  • 📸 Photography & video documentation
  • ✅ Verification (addresses, businesses, products)
  • 📦 Local deliveries and pickups
  • 🏢 Property/location inspections
  • 🛒 Local purchases and price checks
  • ⏳ Waiting in line, running errands, government paperwork
  • 🕵️ Mystery shopping
  • 📊 Data collection, surveys, street interviews
  • 📝 Any real-world task an AI agent can't do remotely

Sandbox Mode

Use a sandbox API key (starts with sandbox_) to test risk-free:

  • 5 demo humans in major LatAm cities
  • Missions auto-complete with demo proof
  • Zero cost, zero real-world impact
  • Perfect for testing your agent's workflow

Pricing

  • Free tier: 10 missions/month, 0% platform fee
  • Pro ($9.99/mo): Unlimited missions, priority matching, webhooks
  • Enterprise: Custom SLA, dedicated support, volume discounts

REST API Alternative

If you prefer REST over MCP:

  • Base URL: https://rentaunhumano.com/api/
  • Auth: Authorization: Bearer YOUR_API_KEY
  • OpenAPI spec: https://rentaunhumano.com/.well-known/openapi.yaml
  • LLM-friendly docs: https://rentaunhumano.com/llms.txt

Links

Installation

Terminal bash

openclaw install rentaunhumano-mcp
    
Copied!

💻Code Examples

-d '{"name":"MyAgent","email":"[email protected]","password":"secret123"}'

--d-namemyagentemailagentexamplecompasswordsecret123.txt
Returns `{ agentId, apiKey }`. Add `"sandbox": true` to test with fake data first.

### 2. Configure Environment

Add to your OpenClaw environment:

RENTA_API_KEY=your-api-key-here

rentaapikeyyour-api-key-here.txt
### 3. Configure mcporter

Add to your `config/mcporter.json`:

mcporter list rentaunhumano

mcporter-list-rentaunhumano.txt
You should see 15 tools available.

## Available Tools (15)

### Missions

| Tool | Description |
|------|-------------|
| `create_task` | Create a new mission (fixed price or hourly) |
| `list_tasks` | List missions with filters (status, category, location) |
| `get_task` | Get full mission details |
| `cancel_task` | Cancel a pending mission |
| `batch_create_tasks` | Create multiple missions at once |
| `create_from_template` | Create from a pre-built template |

### Humans

| Tool | Description |
|------|-------------|
| `list_humans` | Browse available humans (search, filter, sort, geo) |
| `get_human` | Get human profile, skills, rating, and availability |

### Task Lifecycle

| Tool | Description |
|------|-------------|
| `accept_task` | Accept a mission (human side) |
| `complete_task` | Submit completion with proof |
| `get_result` | Get mission result and proof files |

### Communication

| Tool | Description |
|------|-------------|
| `send_message` | Send a message on a mission |
| `list_messages` | Get message history |

### Reviews & Disputes

| Tool | Description |
|------|-------------|
| `create_review` | Rate a human (1-5 stars + comment) |
| `create_dispute` | Open a dispute if something went wrong |

## Usage Examples

### Create a Mission
example.sh
curl -X POST https://rentaunhumano.com/api/agents/register \
  -H "Content-Type: application/json" \
  -d '{"name":"MyAgent","email":"[email protected]","password":"secret123"}'
example.json
{
  "mcpServers": {
    "rentaunhumano": {
      "command": "npx",
      "args": ["-y", "@rentaunhumano/mcp-server"],
      "env": {
        "RENTA_API_URL": "https://rentaunhumano.com",
        "RENTA_API_KEY": "${RENTA_API_KEY}"
      }
    }
  }
}
example.txt
Create a task on rentaunhumano:
- Title: "Tomar fotos de local comercial"
- Description: "Necesito 10 fotos HD del local en Av. Reforma 222, CDMX. Incluir fachada, interior, y menú."
- Category: PHOTOGRAPHY
- Budget: $25 USD
- Location: Ciudad de Mexico, Mexico
- SLA: 24 hours
example.txt
Create a task from the "photo-verification" template on rentaunhumano with:
- Address: "Av. Corrientes 1234, Buenos Aires"
- Details: "Verificar si el negocio sigue abierto y tomar fotos del frente"
example.txt
1. Find humans in Lima, Peru who can do verification tasks
2. Create a mission: "Verificar dirección de empresa" at Av. Javier Prado 2344, Lima
3. Budget: $15 USD, deadline: 48 hours
4. Wait for a human to accept and complete
5. Check the result and photos
6. Leave a 5-star review if done well

Tags

#web_and-frontend-development

Quick Info

Category Development
Model Claude 3.5
Complexity One-Click
Author gymtopz
Last Updated 3/10/2026
🚀
Optimized for
Claude 3.5
🧠

Ready to Install?

Get started with this skill in seconds

openclaw install rentaunhumano-mcp