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

@relayctl/mcp

v1.3.1

Published

External working memory for multi-agent systems — MCP server for Relay

Readme

relay-mcp

External working memory for multi-agent systems. An MCP server that keeps every AI agent — on any machine — in sync through a shared task board.

Why

When multiple Claude Code agents work across sessions or machines, context resets every time. relay_summary restores full system state in ~300 tokens, so no agent ever asks "what were we working on?"

Install

claude mcp add relay \
  -e RELAY_API_URL=https://agent-task-tracker.onrender.com \
  -e RELAY_API_KEY=your-api-key \
  -e RELAY_AGENT=claude-code \
  -- npx relay-mcp

Replace RELAY_API_URL and RELAY_API_KEY with your Relay backend credentials. Set RELAY_AGENT to a unique name per machine (e.g. windows-agent, macbook, claude-code).

Usage

Start every session with:

Call relay_summary to see current tasks.

The agent gets back something like:

total:12  in_progress:2  pending:5  blocked:1  done:4

ACTION NEEDED:
  [urgent] Deploy to prod — Push to Render after env vars confirmed

That's it. Full context in one call.

Tools

| Tool | When to call it | |------|----------------| | relay_summary | Start of every session — orients the agent without burning context | | relay_create | When starting a significant task | | relay_update | Progress updates, status changes | | relay_done | Task complete | | relay_block | Stuck — surfaces to human immediately | | relay_list | Full task list when you need details |

Environment variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | RELAY_API_URL | Yes | — | Base URL of your Relay backend | | RELAY_API_KEY | Yes | — | x-api-key credential | | RELAY_AGENT | No | claude-code | Name to tag tasks with |

Self-hosting

The backend is Agent Task Tracker — deploy it to Render in one click, point RELAY_API_URL at your instance.

License

MIT