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

@orboto/mail-mcp

v0.4.0

Published

MCP server for the Orboto Mail Service — exposes send / batch / templates / suppression / inbound / webhooks / quota as MCP tools for Claude, Cursor, and other agent-aware clients. Boot via `npx @orboto/mail-mcp` with OMS_API_KEY in env.

Readme

@orboto/mail-mcp

MCP server for the Orboto Mail Service. Exposes the OMS API surface as MCP tools so Claude, Cursor, and other agent-aware clients can send mail, check quota, manage suppression, work with templates, browse inbound mail, and manage outbound webhooks.

Install + run

# Per-call (recommended — always picks up the latest version)
npx @orboto/mail-mcp

# Or installed globally
npm install -g @orboto/mail-mcp
orboto-mail-mcp

Auth via OMS_API_KEY env var (same key as the @orboto/mail SDK):

export OMS_API_KEY=oms_live_xxxxxxxxxxxx
npx @orboto/mail-mcp

Claude Desktop / Claude Code config

{
  "mcpServers": {
    "orboto-mail": {
      "command": "npx",
      "args": ["@orboto/mail-mcp"],
      "env": {
        "OMS_API_KEY": "oms_live_xxxxxxxxxxxx"
      }
    }
  }
}

Tools

| Tool | Purpose | |----------------------------|------------------------------------------------------------| | oms_send_email | Send one transactional email | | oms_send_batch | Send up to 100 messages in one call (per-item outcomes) | | oms_send_template | Render + send a server-side template | | oms_get_quota | Read current quota state (monthly + optional daily cap) | | oms_list_recent_sends | Cursor-paginated send history with status filters | | oms_check_suppression | Check whether an address is on the suppression list | | oms_add_to_suppression | Manually add an address to the suppression list | | oms_list_templates | Enumerate templates with their variables schema | | oms_list_inbound | Cursor-paginated inbound mail history | | oms_get_inbound | Single inbound mail + 15-min presigned-URL for raw MIME | | oms_list_webhooks | List outbound-event webhook subscriptions | | oms_create_webhook | Create a webhook subscription (secret shown ONCE) | | oms_delete_webhook | Remove a webhook by id |

Every tool response includes a remainingQuota snapshot so agents can decide whether to keep sending or pause for the user.

License

MIT — use it however you want.