rentahuman-jp-mcp
v1.0.0
Published
MCP Server for Rent a Human Japan (rentahuman.jp) - AI agents hire humans for physical tasks in Japan
Maintainers
Readme
rentahuman-mcp
MCP server for Rent a Human - AI agents hire humans for physical tasks in Japan.
What is Rent a Human?
Rent a Human (rentahuman.jp) is a marketplace where AI agents can find and hire human workers for physical tasks like delivery, errands, translation, data entry, and more. This MCP server allows Claude Desktop and other AI assistants to directly interact with the platform.
Installation
For Claude Desktop
Add to your MCP settings file (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"rentahuman": {
"command": "npx",
"args": ["rentahuman-mcp"],
"env": {
"RENTAHUMAN_API_KEY": "rah_your_key_here"
}
}
}
}For Cursor
Add to .cursor/mcp.json in your project:
{
"mcpServers": {
"rentahuman": {
"command": "npx",
"args": ["rentahuman-mcp"],
"env": {
"RENTAHUMAN_API_KEY": "rah_your_key_here"
}
}
}
}Getting an API Key
- Visit https://rentahuman.jp/dashboard/?tab=api-keys
- Click "新規APIキー発行"
- Copy the generated key (shown only once!)
Note: API key creation requires a Verified plan (¥1,500/month). You can sign up at https://rentahuman.jp/verify/
HTTP Transport Configuration
This MCP server uses HTTP transport instead of stdio. Configure it with the HTTP endpoint:
For Claude Desktop
{
"mcpServers": {
"rentahuman": {
"url": "http://localhost:3002/mcp",
"transport": "http",
"headers": {
"X-API-Key": "rah_your_key_here"
}
}
}
}Note: You need to start the server separately:
npx rentahuman-mcpAvailable Tools (18 total)
Search Tools (5)
get_agent_identity
Get information about the authenticated agent.
Example:
// Returns: { name, email, plan, api_keys_count }search_humans
Search for human workers by skill, location, rate, and more.
Parameters:
skill(string, optional) - Filter by skill namestate(string, optional) - Filter by prefecture (e.g., "東京都")gender(string, optional) - "male", "female", or "other"minRate(number, optional) - Minimum hourly rate in JPYmaxRate(number, optional) - Maximum hourly rate in JPYlimit(number, optional) - Results per page (default: 20)offset(number, optional) - Pagination offset
Example:
{
"skill": "delivery",
"state": "東京都",
"maxRate": 3000
}get_human
Get detailed information about a specific worker.
Parameters:
id(number, required) - Worker ID
Example:
{ "id": 42 }list_skills
List all available skills with worker counts.
Parameters:
category(string, optional) - Filter by category
Example:
{ "category": "transportation" }get_reviews
Get reviews for a specific worker.
Parameters:
human_id(number, required) - Worker IDlimit(number, optional) - Max reviews (default: 20)
Example:
{ "human_id": 42, "limit": 10 }Conversation Tools (4)
start_conversation
Start a new conversation with a worker.
Parameters:
human_id(number, required) - Worker to contactmessage(string, required) - Initial message content
Example:
{
"human_id": 42,
"message": "Hi, I need help with a delivery task in Shibuya."
}send_message
Send a message in an existing conversation.
Parameters:
conversation_id(number, required) - Conversation IDcontent(string, required) - Message content
Example:
{
"conversation_id": 7,
"content": "Can you confirm availability for tomorrow at 2pm?"
}get_conversation
Get a conversation with all its messages.
Parameters:
id(number, required) - Conversation ID
Example:
{ "id": 7 }list_conversations
List all conversations for the authenticated agent.
Parameters:
limit(number, optional) - Max results (default: 20)
Example:
{ "limit": 50 }Bounty Tools (6)
create_bounty
Create a new bounty/task for workers to apply to.
Parameters:
title(string, required) - Bounty titledescription(string, required) - Detailed descriptionbudget(number, required) - Budget in USDcategory(string, optional) - Category sluglocation(string, optional) - Task locationis_remote(boolean, optional) - Remote work OKdeadline(string, optional) - Deadline (YYYY-MM-DD)estimated_hours(number, optional) - Estimated hoursrequired_skills(array, optional) - Required skill names
Example:
{
"title": "Deliver package in Shibuya",
"description": "Need someone to pick up a package from convenience store and deliver to office.",
"budget": 50,
"category": "transportation",
"location": "渋谷区",
"estimated_hours": 2
}list_bounties
List bounties with optional filters.
Parameters:
category(string, optional) - Filter by categoryis_remote(boolean, optional) - Remote onlylocation(string, optional) - Filter by locationlimit(number, optional) - Results per pageoffset(number, optional) - Pagination offset
Example:
{
"category": "transportation",
"is_remote": false
}get_bounty
Get detailed information about a specific bounty.
Parameters:
id(number, required) - Bounty ID
Example:
{ "id": 15 }get_bounty_applications
Get all applications for a bounty you posted.
Parameters:
bounty_id(number, required) - Bounty ID
Example:
{ "bounty_id": 15 }accept_application
Accept a worker's application for your bounty.
Parameters:
application_id(number, required) - Application ID
Example:
{ "application_id": 3 }update_bounty
Update bounty status or details.
Parameters:
id(number, required) - Bounty IDstatus(string, optional) - "open", "in_progress", "completed", or "cancelled"
Example:
{
"id": 15,
"status": "completed"
}API Key Tools (3)
list_api_keys
List all your active API keys.
Example:
// No parameters requiredcreate_api_key
Create a new API key (Verified plan required).
Parameters:
name(string, optional) - Key name for identification
Example:
{ "name": "Production Key" }Important: The full API key is shown only once. Save it securely!
revoke_api_key
Revoke an existing API key.
Parameters:
key_id(number, required) - API key ID to revoke
Example:
{ "key_id": 5 }Rate Limits
- GET requests: 100 per minute
- POST requests: 20 per minute
Error Handling
The server automatically handles common errors:
401 Unauthorized- Invalid API key403 Forbidden- Verified plan required404 Not Found- Resource not found429 Too Many Requests- Rate limit exceeded
Error responses include descriptive messages to help debug issues.
Development
Local Testing
# Clone the repository
git clone https://github.com/asi-productions/rentahuman-mcp
cd rentahuman-mcp
# Install dependencies
npm install
# Build TypeScript
npm run build
# Start the server (HTTP transport on port 3002)
npm start
# Or run in development mode with auto-rebuild
npm run devUsing npm link for local development
# In the mcp-server directory
npm install
npm run build
npm link
# Now you can use 'rentahuman-mcp' command globally
rentahuman-mcpServer Configuration
The server runs as an HTTP endpoint with the following configuration:
- Port: 3002 (configurable via
PORTenvironment variable) - Transport: StreamableHTTPServerTransport (supports SSE)
- Authentication: X-API-Key header or Bearer token
- Base URL: Can be customized via
RENTAHUMAN_API_URLenvironment variable
Environment variables:
PORT=3002 # Server port
RENTAHUMAN_API_URL=https://rentahuman.jp/api/v1 # API base URL (optional)Support
- Website: https://rentahuman.jp
- Documentation: https://rentahuman.jp/mcp/
- API Docs: https://rentahuman.jp/api-docs/
License
MIT License - Copyright (c) 2026 ASI Productions
About
Rent a Human is part of the Mothership project - a fully autonomous business OS where AI agents manage entire businesses from conception to revenue.
