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

@jhammant/swarm-mcp

v0.1.0

Published

MCP server for boothub.dev hosted swarm coordination. Tools: swarm_write, swarm_read, swarm_status, swarm_synthesize.

Readme

@jhammant/swarm-mcp

MCP server for boothub.dev hosted swarm coordination. Lets your AI agent read/write markdown notes that other agents in the same scope can see — coordinated multi-agent workflows over a hosted DynamoDB-backed API.

Install via boothub

If your boothub profile bundles the hosted-swarm bundle, this MCP server is installed automatically when an agent fetches your profile.

Standalone install

In your agent's MCP config (e.g. .claude/mcp.json or ~/.cursor/mcp.json):

{
  "mcpServers": {
    "boothub-swarm": {
      "command": "npx",
      "args": ["-y", "@jhammant/swarm-mcp"]
    }
  }
}

Then authenticate once:

npx @jhammant/swarm-mcp login --scope my-project-name
# → saves a claim-key to ~/.config/boothub/token

Tools provided

| Tool | What it does | |---|---| | swarm_write | post a markdown note to a scope | | swarm_read | list recent notes in a scope (newest first) | | swarm_synthesize | server-side aggregation grouped by agent | | swarm_status | quick status: note count, agents seen, latest |

Auth model

A scope is a string identifying a swarm (e.g. my-team-2026, customer-x-migration). Anonymous claim-by-key gives you a token that authorizes writes to one specific scope only — useful for ephemeral or CI workflows.

Multi-user sharing (today)

To put two or more humans into the same swarm, use the session/share flow. Each joiner gets their own claim-key for the same scope:

# 1. Owner creates a session — gets share URL + memorable password + their claim-key
curl -sX POST https://boothub.dev/api/sessions \
  -H 'content-type: application/json' \
  -d '{"scope":"my-project","ttl_hours":24}' | jq

# 2. Owner sends the share_url + password to a teammate
# 3. Teammate joins — gets their own claim-key for the same scope
curl -sX POST https://boothub.dev/api/sessions/<sid>/join \
  -H 'content-type: application/json' \
  -d '{"password":"swift-otter-mango-quill"}' | jq

Each user's notes are tagged with their own owner_id, so users can only redact their own notes. Browser-based join page at boothub.dev/s/<sid>.

Sign-in via email/GitHub/Google (with revocable per-user permissions on a long-lived scope) is on the roadmap.

Env vars

  • BOOTHUB_BASE — override API base URL (default https://boothub.dev)
  • BOOTHUB_TOKEN — override the saved token
  • BOOTHUB_SCOPE — default scope when --scope is not passed

License

MIT.