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

beeperbox

v0.9.0

Published

Lite mode for beeperbox — the opinionated MCP verb server for Beeper Desktop, run standalone against a Beeper you already have open (no Docker, no Electron). The full headless-Beeper-in-Docker build lives at github.com/hamr0/beeperbox.

Readme

                ╭──────────────────────────────────╮
                │  ╔╗ ╔═╗╔═╗╔═╗╔═╗╦═╗╔╗ ╔═╗ ╦ ╦    │
                │  ╠╩╗╠╣ ╠╣ ╠═╝╠╣ ╠╦╝╠╩╗║ ║ ╚╦╝    │
                │  ╚═╝╚═╝╚═╝╩  ╚═╝╩╚═╚═╝╚═╝ ╩ ╩    │
                │   one agent ──→ 50+ messengers   │
                ╰──────────────────────────────────╯

Run beeperbox's MCP verb server against a Beeper Desktop you already have open — no Docker, no Electron, no Xvfb.

This is the lite half of beeperbox. The full project ships a Docker image with a headless Beeper Desktop inside; lite mode is the same single-file, zero-dependency MCP server pointed at a Beeper Desktop you run on your laptop. Identical verb surface, identical version — you just supply Beeper.

  • Always-on / VPS / no local Beeper? Use the Docker image.
  • Beeper already open on your machine? Use this.

Quick start

Prereqs: Beeper Desktop running locally, with the Developer API enabled — Beeper → Settings → Developers → enable the API and create an access token (the same token the container uses).

BEEPER_TOKEN=your-token-here npx beeperbox

That starts the MCP HTTP server on http://127.0.0.1:23375, pointed at the local Beeper Desktop API on http://127.0.0.1:23373. On boot it logs a one-line reachability verdict (preflight OK: … N account(s) or preflight FAIL: …) so a misconfigured token or API is obvious immediately.

For stdio transport (Claude Code, Cursor, Cline, Continue, bareagent):

BEEPER_TOKEN=your-token-here npx beeperbox --stdio

The 12 tools

One opinionated MCP verb layer over Beeper — every tool returns a normalized Chat / Message schema, propagates chat_id + network onto every message, and is documented in-schema for the model. Reach across all 50+ networks without knowing which bridge you're talking to.

  • Read / triagelist_accounts · list_inbox · list_unread · get_chat · read_chat · search_messages
  • Write / actsend_message · note_to_self · react_to_message · archive_chat
  • Watch / reachpoll_messages (read-only watch primitive, restart-safe cursor, source echo-guard) · download_asset (attachment bytes; every message carries attachments[])

Full schemas and usage in the main README.

Config

| Env | Meaning | Default | |---|---|---| | BEEPER_API | Local Beeper Desktop API base | http://127.0.0.1:23373 | | BEEPER_TOKEN | Beeper dev token (Settings → Developers) | — (required) | | MCP_PORT | MCP HTTP port | 23375 | | MCP_AUTH_TOKEN | Optional bearer guard on the MCP endpoint | unset (open on loopback) | | MCP_ALLOWED_HOSTS | Host/Origin allowlist | localhost,127.0.0.1,::1 | | MCP_BIND_ADDR | Interface the MCP server binds | 127.0.0.1 (loopback) |

Security

The server binds loopback only (127.0.0.1) by default, so it's safe with no auth — only processes on your own machine can reach it. Don't just set it to 0.0.0.0: a same-network attacker can spoof the Host header past the allowlist and reach the full tool surface (read every message, send across every network) unauthenticated. To expose it deliberately, set MCP_BIND_ADDR=0.0.0.0 and MCP_AUTH_TOKEN, and put it behind a tunnel (SSH / Tailscale / TLS reverse proxy) — never raw on a public interface.

Supervision

There's no Docker restart policy in lite mode. For an always-on setup, run it under systemd or pm2.

See the full README and docs/GUIDE.md for the complete tool reference and the container build.

The bare ecosystem

Local-first, composable agent infrastructure. Same API patterns throughout — mix and match, each module works standalone.

  • bareagent — the think→act→observe loop. Goal in → coordinated actions out.
  • bareguard — the single gate every action passes through. Action in → allow / deny / ask-a-human out.
  • litectx — code + memory graph with activation decay. Query in → ranked context out.
  • barebrowse — a real browser for agents. URL in → pruned snapshot out.
  • baremobile — Android + iOS device control. Screen in → pruned snapshot out.
  • beeperbox (this) — 50+ messaging networks via one MCP server. Chat in → unified message stream out.

License

Apache-2.0. Independent wrapper around Beeper Desktop, no affiliation with Beeper / Automattic.