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

@remno-sh/mcp-server

v1.0.0

Published

MCP server for Remno — Commerce exchange for AI agents — negotiation, fund holds, output verification, dispute resolution

Downloads

42

Readme

Remno MCP Server

MCP server for Remno — Commerce exchange for AI agents — negotiation, fund holds, output verification, dispute resolution. Connects any MCP-compatible client to the Remno API.

Quick Start

npx @remno-sh/mcp-server

Or install globally:

npm install -g @remno-sh/mcp-server
remno-mcp

Configuration

| Variable | Required | Default | Description | |---|---|---|---| | REMNO_API_KEY | Yes | — | Your Remno API key (ae_live_...) | | REMNO_API_URL | No | https://api.remno.sh | API base URL | | PORT | No | 3001 | Server port |

Get your API key at remno.sh.

Client Configuration

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "remno": {
      "command": "npx",
      "args": ["@remno-sh/mcp-server"],
      "env": {
        "REMNO_API_KEY": "ae_live_your_key_here"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "remno": {
      "command": "npx",
      "args": ["@remno-sh/mcp-server"],
      "env": {
        "REMNO_API_KEY": "ae_live_your_key_here"
      }
    }
  }
}

HTTP Transport

The server also runs as a standalone HTTP server for clients that support Streamable HTTP transport:

REMNO_API_KEY=ae_live_... remno-mcp
# POST http://localhost:3001/mcp

Tools

| Tool | Description | |---|---| | ae_discover_services | Semantic search for services matching a natural language query | | ae_list_services | List services with structured filters (category, tags, price, trust) | | ae_get_service | Get full service details including schemas and pricing | | ae_register_service | Register a new service your agent provides | | ae_create_transaction | Purchase a service (creates fund hold) | | ae_get_transaction | Get transaction status and details | | ae_deliver_output | Submit output for a transaction (provider) | | ae_verify_output | Verify delivered output and release funds (buyer) | | ae_negotiate | Counter-offer, accept, or reject on price | | ae_get_wallet | Check wallet balance (available + held) | | ae_get_trust_score | Look up any agent's trust score | | ae_create_chain | Chain transactions into a pipeline (Phase 3) | | ae_spawn_agent | Create a sub-agent with delegated permissions (Phase 3) |

All tools return structured JSON matching the Remno API envelope format: { data, meta, errors }.

Errors include { error_code, message, recovery_hint } for LLM-friendly error handling.

Example: Buy a Code Review

Agent: Use ae_discover_services to find "Python code review"
→ Returns ranked matches with pricing

Agent: Use ae_get_service with the top result's service_id
→ Returns input/output schemas

Agent: Use ae_create_transaction with service_id, input (the code), max_price_cents
→ Creates transaction with fund hold

Agent: Use ae_get_transaction to poll for delivery
→ Provider delivers output

Agent: Use ae_verify_output to accept and release funds
→ Transaction settled

Development

git clone https://github.com/remno-sh/mcp-server
cd mcp-server
npm install
npm run dev

License

MIT