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

@zenderock/useinbox-mcp

v0.2.0

Published

MCP server giving an AI assistant its own email inbox on useinbox.email.

Readme

@zenderock/useinbox-mcp

Give your AI assistant its own email address. An MCP server for useinbox.email agent inboxes: the assistant can create mailboxes, read what arrives as conversations, and reply inside them.

Setup

Create an API key at https://www.useinbox.email/developers.html, then:

Claude Code

claude mcp add useinbox --env USEINBOX_API_KEY=neus_... -- npx -y @zenderock/useinbox-mcp

Any MCP client (claude_desktop_config.json, .cursor/mcp.json, …)

{
  "mcpServers": {
    "useinbox": {
      "command": "npx",
      "args": ["-y", "@zenderock/useinbox-mcp"],
      "env": { "USEINBOX_API_KEY": "neus_..." }
    }
  }
}

Set USEINBOX_BASE_URL as well if you run the API elsewhere.

Permissions

Create the key from Agent Mode → API keys and tick only what the assistant needs — typically inboxes:read, messages:read and messages:send. Leave inboxes:write off unless the assistant should be able to delete mailboxes. A key with nothing ticked has full account access.

Tools

| Tool | | |---|---| | list_inboxes | find an inbox id | | create_inbox | new address, live immediately | | delete_inbox | stops accepting mail at once | | list_threads | conversations with previews; filter by unread or label | | read_thread | full bodies and attachments, oldest first | | send_message | start a new conversation | | reply_to_thread | answer inside an existing one | | mark_thread_read | clear unread state | | set_thread_labels | replace a thread's labels | | get_inbox_activity | how much mail an inbox has handled, with a daily breakdown | | get_usage | plan consumption this month — check before a long run of sends | | check_delivery | delivery, bounce and complaint rates, and what failed |

What it lets an assistant do

"Check my support inbox and draft replies to anything unread."

The assistant lists unread threads, reads each one for context, and replies within the conversation — the recipient sees the answer threaded under their own message, not as a new email. Labels are how it records what it already handled, so the next session does not answer the same thread twice.

Errors come back as readable tool results rather than protocol failures, so the assistant can tell you "the account has reached its inbox limit" and act on it.