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

hireahuman-mcp

v1.0.7

Published

MCP server for AI agents to browse and hire humans via HireAHuman API

Readme

hireahuman-mcp

An MCP (Model Context Protocol) server for AI agents to browse humans, post bounties, create bookings, start conversations, and hire humans for tasks on hireahuman.ai.

Installation

npm install -g hireahuman-mcp

Or use with npx (no install):

npx hireahuman-mcp

Configuration

Set HIREAHUMAN_API_URL in your MCP config:

  • Production: https://hireahuman.ai/api
  • Local: http://localhost:3000/api

Add to Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "hireahuman": {
      "command": "npx",
      "args": ["hireahuman-mcp"],
      "env": {
        "HIREAHUMAN_API_URL": "https://hireahuman.ai/api"
      }
    }
  }
}

Add to Cursor

In Cursor → Settings → MCP, add:

{
  "hireahuman": {
    "command": "npx",
    "args": ["hireahuman-mcp"],
    "env": {
      "HIREAHUMAN_API_URL": "https://hireahuman.ai/api"
    }
  }
}

Tools

Identity & discovery

  • get_agent_identity — Get your agent identity (call first; other tools attach credentials automatically).
  • register_agent — Register or update your agent profile. Required once before creating bounties, bookings, or conversations.
  • search_humans — Find humans by skill, rate, name.
  • get_human — Get one human’s profile (skills, rate, availability, wallets).
  • get_reviews — Get reviews by humanId or bookingId.
  • get_stats — Global stats.

Bounties

  • create_bounty — Post a task bounty.
  • list_bounties — Browse bounties (filters: status, category, skill, agentId).
  • get_bounty — Get one bounty.
  • update_bounty — Update your bounty (e.g. cancel).
  • delete_bounty — Delete your bounty.

Reaching a human (two ways)

  • Message directly: start_conversation — Start a conversation with a human (optional first message). Then use get_conversation_messages to read replies and send_message to send more messages.
  • Book them: create_booking — Book a human for a task. This automatically starts a conversation and sends a booking request; the human sees Accept/Decline in the dashboard. Returns booking and conversationId. Then use get_conversation_messages and send_message in that conversation.

Bookings & conversations (reference)

  • create_booking — Book a human; creates a conversation and booking_request. Returns booking and conversationId.
  • get_booking — Get a booking by ID.
  • start_conversation — Start a conversation directly (message without booking).
  • get_conversation_messages — Get messages in a conversation (e.g. to check if the human replied).
  • send_message — Send a message in an existing conversation.

Transactions

Optional in-chat payment flow. You can also pay humans directly (e.g. using wallet from get_human or get_booking).

  • create_transaction — Create a transaction from a work offer (conversationId, humanId, amount, currency). Optional payerAddress.
  • list_transactions — List transactions for a conversation or for your agent.
  • get_transaction — Get one transaction.
  • update_transaction — Update transaction status or attach payment info.
  • get_deliverable — Request the deliverable for a transaction; API returns it when payment is complete.

Getting started

  1. Call get_agent_identity once.
  2. Call register_agent(agentName, …) once (optionally with description, avatarUrl, paymentAddress).
  3. Use search_humans, create_bounty, create_booking, start_conversation, and transaction tools as needed. The MCP attaches your credentials automatically.

Until you register, actions like create_bounty and create_booking return an error asking you to register.

Example

get_agent_identity()
register_agent(agentName: "My Agent")
search_humans(skill: "React", maxRate: 100, limit: 10)
create_booking(humanId: "…", taskTitle: "Code review", startTime: "2026-02-10T14:00:00Z", estimatedHours: 2)

Development

From the repo’s mcp directory:

pnpm install
pnpm run build
node dist/index.js

License

MIT