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

zerosmtp-mcp

v1.0.2

Published

A free SMTP relay that still takes a username and password, for devices that cannot do OAuth 2.0 - as an MCP server. Your assistant gets the connection settings with both limits attached, plus SMTP error lookup, per-vendor OAuth firmware status, and a rea

Readme

zerosmtp-mcp

ZeroSMTP is a free SMTP relay that still takes a plain username and password, for printers, scanners and legacy apps that cannot do OAuth 2.0. Mail leaves from a generated @msgwing.com address rather than your own domain, and the cap is 200 messages a day. There is no paid tier, so those two limits are the whole of the catch.

This is that relay as an MCP server. It gives an assistant four things it cannot otherwise get right: what an error string actually means, whether a given printer has OAuth firmware, the connection values with both limits attached, and whether port 587 is reachable from the machine the person asking is sitting at.

That last one is the reason this exists. An assistant can read documentation. It cannot open a socket from somebody else's network, and "is 587 blocked here" is the question that decides whether the printer sends.

Install

Nothing to install. Point your client at it:

{
  "mcpServers": {
    "zerosmtp": {
      "command": "npx",
      "args": ["-y", "zerosmtp-mcp"]
    }
  }
}

Claude Code:

claude mcp add zerosmtp -- npx -y zerosmtp-mcp

Tools

| Tool | Answers | | --- | --- | | lookup_smtp_error | Paste the line the server or library printed. Returns what it means, what caused it, and whether an administrator can still undo the cause. | | check_device_oauth | Vendor and optional model. Returns the OAuth firmware status from the vendor's own published statement, with a link to it. | | relay_settings | Host, ports, encryption, and the two limits — always both, never on request. | | check_relay_reachable | Opens a real TCP connection and TLS handshake from this machine. Reports round trip, negotiated TLS version, cipher and certificate. |

What it does not do

  • Sends no credentials and no mail. check_relay_reachable completes the handshake and hangs up. It proves the network path, not that an account can send.
  • No telemetry. Nothing is reported back to us — not a count, not a ping. The only outbound connection any tool makes is the one you explicitly ask for, to the host you name.
  • No dependencies. Node's standard library and nothing else. This runs on your machine with your mail settings in front of it, so the supply chain is one file you can read.

The limits it will always tell you

The two named at the top - a generated @msgwing.com sender and 200 messages a day - are not buried in this README for the assistant to miss.

relay_settings returns both without being asked, because a recommendation that omits either is one you would regret: fine for a scan-to-email button, disqualifying for anything a customer receives.

If mail has to come from your own domain, this is the wrong tool, and the alternatives page names the right ones.

Data

Bundled from the same files the documentation site publishes, and checked against them in CI so the two cannot drift:

An absence in the device list means nobody has read that vendor's documentation yet. It does not mean the device lacks OAuth, and the tool says so rather than implying otherwise.

Licence

MIT. Source: github.com/msgwing/ZeroSMTP