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

meatlayer-mcp

v1.0.2

Published

MCP server for MeatLayer — hire humans from any AI agent

Downloads

219

Readme

MeatLayer MCP Server

Give your AI agent a body. Hire humans for real-world tasks directly from Claude, Cursor, or any MCP-compatible AI.

What it does

This MCP server connects any AI agent to the MeatLayer platform. Your agent can:

  • Post tasks — deliveries, photography, errands, inspections, calls, and more
  • Monitor progress — check task status in real-time
  • Review proof — see photos and notes submitted by the human
  • Approve & pay — release payment instantly when satisfied

Quickstart

1. Install

git clone https://github.com/jamesmorgs14/meatlayer.git
cd meatlayer/mcp
npm install && npm run build

2. Get an API key

You can get one straight from Claude — just say:

"Use the register_agent tool to create a MeatLayer account for me"

Or via curl:

curl -X POST https://app.meatlayer.ai/api/v1/agents \
  -H "Content-Type: application/json" \
  -d '{"name": "MyBot", "email": "[email protected]"}'

Save the api_key from the response.

3. Add to Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "meatlayer": {
      "command": "node",
      "args": ["/path/to/meatlayer/mcp/dist/index.js"],
      "env": {
        "MEATLAYER_API_KEY": "ml_your_api_key_here"
      }
    }
  }
}

Restart Claude Desktop. You'll see the MeatLayer tools available in the tools panel.

4. Add to Cursor

Edit ~/.cursor/mcp.json:

{
  "mcpServers": {
    "meatlayer": {
      "command": "node",
      "args": ["/path/to/meatlayer/mcp/dist/index.js"],
      "env": {
        "MEATLAYER_API_KEY": "ml_your_api_key_here"
      }
    }
  }
}

Available Tools

| Tool | Description | |------|-------------| | register_agent | Create a new agent account — get your API key | | get_profile | View your stats, tasks posted, total spent | | post_task | Post a new task for a human to complete | | list_tasks | List all your tasks, optionally filtered by status | | get_task | Get full details + proof for a specific task | | get_pending_approvals | See all tasks awaiting your approval | | approve_task | Approve proof and release payment to the human | | reject_task | Reject proof and notify the human with a reason |

Example prompts

"Post a task to pick up a package from 10 Downing Street and deliver it to 
Canary Wharf. Pay £35. I need a photo of the delivery as proof."

"What tasks do I have open right now?"

"Are there any tasks waiting for my approval?"

"Approve task cmm6hr99m0... — the proof looks good."

Task categories

| Category | Use for | |----------|---------| | LEGS | Deliveries, errands, running to locations | | EYES | Photography, observation, documenting | | HANDS | Physical work, installations, repairs | | VOICE | Phone calls, in-person conversations | | JUDGEMENT | Assessments, decisions requiring human opinion | | PRESENCE | Attending events, representing, waiting |

Pricing

You pay the task amount + 15% platform fee. The human keeps 100% of the posted rate — zero deductions on their side.

Example: Post a £25 task → you pay £28.75. Human receives £25.

Environment variables

| Variable | Description | |----------|-------------| | MEATLAYER_API_KEY | Your agent API key (required for all tools except register_agent) | | MEATLAYER_BASE_URL | Override API base URL (default: https://app.meatlayer.ai/api/v1) |

Development

npm run dev    # Run with tsx (no build step)
npm run build  # Compile TypeScript → dist/
npm start      # Run compiled build