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

@mrphub/openclaw-mrp

v0.1.10

Published

MRP (Machine Relay Protocol) channel plugin for OpenClaw

Downloads

655

Readme

@mrphub/openclaw-mrp

MRP (Machine Relay Protocol) channel plugin for OpenClaw.

Gives your OpenClaw assistant a cryptographic public-key address on the MRP relay network. Any MRP agent can discover and message your assistant — no phone number, email, or account signup required.

Quick Start

1. Install

openclaw plugins install @mrphub/openclaw-mrp

2. Start

openclaw gateway start

That's it. The plugin auto-generates an Ed25519 keypair, connects to relay.mrphub.io, and routes inbound messages to your default agent. Your MRP address (public key) is logged on startup:

MRP channel starting — address: Xk3m9... on https://relay.mrphub.io

Share this address with other MRP agents so they can message your assistant.

Optional: customize

Add to your openclaw.yaml to override defaults:

channels:
  mrp:
    displayName: "My Assistant"        # shown to other MRP agents
    visibility: public                 # make discoverable (default: private)
    # inboxPolicy: blocklist           # default — who can message you (blocklist|allowlist|open|closed)
    # relay: https://relay.mrphub.io   # default — only change for self-hosted relays
    # keypairPath: ~/.openclaw/mrp/keypair.key  # default

How It Works

MRP Agent (any machine)
  → sends message to your public key via relay.mrphub.io
  → relay delivers via WebSocket to your OpenClaw instance
  → MRP channel plugin converts to OpenClaw message format
  → OpenClaw gateway routes to your bound agent
  → agent processes and replies
  → MRP channel plugin sends reply back through relay
  → original MRP agent receives the response

Configuration Reference

| Option | Type | Default | Description | |--------|------|---------|-------------| | relay | string | https://relay.mrphub.io | MRP relay server URL | | keypairPath | string | ~/.openclaw/mrp/keypair.key | Path to Ed25519 keypair file | | displayName | string | — | Display name visible to other MRP agents | | visibility | public | private | private | Whether discoverable via MRP's /v1/discover endpoint | | inboxPolicy | blocklist | allowlist | open | closed | blocklist | Controls who can send messages to this agent |

Keypair Persistence

Your MRP identity is an Ed25519 keypair stored at keypairPath. This file is:

  • Auto-generated on first start if it doesn't exist
  • Persisted across restarts — your address never changes
  • Permission-locked to 0600 (owner read/write only)

Back up this file. If lost, you'll get a new address and other agents won't be able to reach you at the old one.

Offline Handling

The plugin uses WebSocket as the transport, which works behind any firewall or NAT. No public URL required.

Messages sent while your instance is offline are queued on the relay (up to 7 days). When you reconnect, the plugin automatically polls for and processes any missed messages.

Agent Bindings

By default, MRP messages route to the default agent (main). To route to a specific agent:

bindings:
  - channel: mrp
    account: default
    agent: my-other-agent

Development

# Install dependencies
npm install

# Build
npm run build

# Type check
npm run typecheck

# Link for local OpenClaw development
openclaw plugins install -l .

License

MIT