npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

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

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

  1. Visit https://rentahuman.jp/dashboard/?tab=api-keys
  2. Click "新規APIキー発行"
  3. 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-mcp

Available 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 name
  • state (string, optional) - Filter by prefecture (e.g., "東京都")
  • gender (string, optional) - "male", "female", or "other"
  • minRate (number, optional) - Minimum hourly rate in JPY
  • maxRate (number, optional) - Maximum hourly rate in JPY
  • limit (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 ID
  • limit (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 contact
  • message (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 ID
  • content (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 title
  • description (string, required) - Detailed description
  • budget (number, required) - Budget in USD
  • category (string, optional) - Category slug
  • location (string, optional) - Task location
  • is_remote (boolean, optional) - Remote work OK
  • deadline (string, optional) - Deadline (YYYY-MM-DD)
  • estimated_hours (number, optional) - Estimated hours
  • required_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 category
  • is_remote (boolean, optional) - Remote only
  • location (string, optional) - Filter by location
  • limit (number, optional) - Results per page
  • offset (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 ID
  • status (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 required

create_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 key
  • 403 Forbidden - Verified plan required
  • 404 Not Found - Resource not found
  • 429 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 dev

Using 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-mcp

Server Configuration

The server runs as an HTTP endpoint with the following configuration:

  • Port: 3002 (configurable via PORT environment variable)
  • Transport: StreamableHTTPServerTransport (supports SSE)
  • Authentication: X-API-Key header or Bearer token
  • Base URL: Can be customized via RENTAHUMAN_API_URL environment variable

Environment variables:

PORT=3002                                    # Server port
RENTAHUMAN_API_URL=https://rentahuman.jp/api/v1  # API base URL (optional)

Support

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.