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

@sendbyte/mcp

v0.1.0

Published

SendByte MCP server: let AI agents send email and manage sending domains, templates, and deliverability through SendByte.

Downloads

191

Readme

@sendbyte/mcp

The official SendByte MCP server. It lets AI agents and coding tools (Claude Desktop, Claude Code, Cursor, Continue, and any Model Context Protocol client) send email and manage sending domains, templates, analytics, and content checks through your SendByte account.

It speaks MCP over stdio and authenticates with your own SendByte API key.

Quick start

You need a SendByte API key. Create one in the dashboard under API keys (use a sk_test_ key while you experiment; it sandboxes every send).

No global install is needed. Point your MCP client at npx @sendbyte/mcp and set SENDBYTE_API_KEY in its environment.

Claude Desktop

Edit claude_desktop_config.json (Settings, Developer, Edit Config):

{
  "mcpServers": {
    "sendbyte": {
      "command": "npx",
      "args": ["-y", "@sendbyte/mcp"],
      "env": { "SENDBYTE_API_KEY": "sk_test_your_key_here" }
    }
  }
}

Claude Code

claude mcp add sendbyte --env SENDBYTE_API_KEY=sk_test_your_key_here -- npx -y @sendbyte/mcp

Cursor

Add to ~/.cursor/mcp.json (or a project .cursor/mcp.json):

{
  "mcpServers": {
    "sendbyte": {
      "command": "npx",
      "args": ["-y", "@sendbyte/mcp"],
      "env": { "SENDBYTE_API_KEY": "sk_test_your_key_here" }
    }
  }
}

Continue

In ~/.continue/config.json:

{
  "experimental": {
    "modelContextProtocolServers": [
      {
        "transport": {
          "type": "stdio",
          "command": "npx",
          "args": ["-y", "@sendbyte/mcp"],
          "env": { "SENDBYTE_API_KEY": "sk_test_your_key_here" }
        }
      }
    ]
  }
}

Configuration

| Variable | Required | Description | | --- | --- | --- | | SENDBYTE_API_KEY | yes | An sk_live_ or sk_test_ key from the dashboard. A test key sandboxes every send. | | SENDBYTE_BASE_URL | no | Override the API host for self-hosted, staging, or local development. Defaults to https://api.sendbyte.africa. |

Tools

| Tool | What it does | | --- | --- | | send_email | Send a transactional email (inline html/text, or a saved template with variables). | | get_email | Fetch one email by id with its delivery status and event timeline. | | list_emails | List recent emails, newest first, with optional status filter and cursor paging. | | list_domains | List sending domains with verification and deliverability state. | | get_domain | Get one domain with the DNS records to publish and their current state. | | verify_domain | Re-check a domain's DNS and SES status now. | | list_templates | List saved templates. | | get_template | Get one template's subject and body. | | preview_template | Render a saved template with sample variables, without sending. | | get_analytics | Daily send counts by status and deliverability rates over the last N days. | | scan_content | Pre-send spam-risk check returning a score, level, and the signals found. |

Notes

  • A sk_test_ key sandboxes sends, so an agent can exercise send_email safely. Switch to sk_live_ only when you want real delivery.
  • The sender domain on send_email must be a verified sending domain on your account (or the shared test domain when using a test key).
  • The server writes only to stderr; stdout is reserved for the MCP protocol.

License

MIT