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

@jassra25/inboxr-mcp

v0.2.0

Published

Inboxr MCP server — email, SMS, voice, webhooks, forwards, and domain tools for AI agents

Readme

@jassra25/inboxr-mcp

MCP server giving AI agents access to disposable email + SMS + voice inboxes, webhooks, mail forwards, and domain/credit info via Inboxr.

v0.2.0 adds webhook, forward, SMS-credit, domain, SMTP-credential and TTS tools — and fixes a bug where every voice_* tool in v0.1.0 called a path (/v1/sms/voice/*) that doesn't exist and always 404'd. If you use the voice tools, upgrade.

Install

npm install -g @jassra25/inboxr-mcp
# or run on demand: npx -y @jassra25/inboxr-mcp

Configure your MCP client

Claude Desktop — add to claude_desktop_config.json:

{
  "mcpServers": {
    "inboxr": {
      "command": "npx",
      "args": ["-y", "@jassra25/inboxr-mcp"],
      "env": { "INBOXR_API_KEY": "inb_live_..." }
    }
  }
}

Cursor, Continue, Cline — same shape, same env.

Generate your API key at https://getinboxr.app/api-keys.

Tools

Email

| Tool | What it does | |---|---| | create_inbox | Create a disposable address (optional label) | | list_inboxes | List active inboxes for your workspace | | delete_inbox | Tear down an inbox | | wait_for_message | Long-poll for the next arrival (up to 60s) | | get_messages | List messages in an inbox | | get_message | Fetch full body (text + html) | | extract_otp | Pull the first 6-digit code from a message | | extract_link | Pull the first URL (optional regex filter) |

SMS

| Tool | What it does | |---|---| | sms_create_inbox | Claim a phone-number-backed SMS inbox | | sms_list_inboxes | List SMS inboxes | | sms_delete_inbox | Release an SMS inbox | | sms_send | Send an SMS from an inbox | | sms_claim_sender | Stake the route for an expected sender number | | sms_wait_for_message | Long-poll for the next inbound SMS | | sms_get_messages | List SMS in an inbox | | sms_extract_otp | Pull an OTP (4–8 digits) from an SMS body | | sms_credit_balance | (0.2.0) Current credit balance + top-up packs |

Voice / IVR

| Tool | What it does | |---|---| | voice_list_flows | List IVR flows | | voice_create_flow | Create a flow from raw JSON | | voice_create_flow_from_description | Let Claude design the JSON tree | | voice_assign_flow | Attach a flow to an inbox | | voice_test_flow | Dry-run with simulated DTMF | | voice_list_traces | See how recent calls traversed a flow | | voice_list_voices | (0.2.0) TTS voice catalogue | | voice_tts_generate | (0.2.0) Pre-render a phrase to an audio URL |

Webhooks (0.2.0)

| Tool | What it does | |---|---| | list_webhooks | List subscriptions + the full event vocabulary | | create_webhook | Subscribe a URL to events (signing secret returned once) | | delete_webhook | Revoke a subscription | | test_webhook | Fire a synthetic event, return receiver status + body | | webhook_deliveries | Last 50 delivery attempts |

Forwards · domains · workspace (0.2.0)

| Tool | What it does | |---|---| | list_forwards / create_forward / delete_forward | Mail-alias rules (A → B). Requires forward:write scope, not auto-granted by write. | | list_domains | Every domain the workspace can use (public + platform + custom) | | inbox_smtp_credentials | Issue SMTP/IMAP credentials for an inbox (returned once) |

Example agent workflow

1. create_inbox(label="signup-test")          → [email protected]
2. <fill the address into the signup form>
3. wait_for_message(inbox_id, timeout_s=30)
4. extract_otp(message_uid, domain)           → "428104"
5. <enter the code>
6. delete_inbox(inbox_id)

Configuration

| Env var | Default | Notes | |---|---|---| | INBOXR_API_KEY | (required) | Bearer token. Scope must cover the tools you use: read/write for email + inboxes, sms:send/sms:read for SMS, voice:call/voice:read for voice, forward:write/forward:read for forwards. admin covers everything. | | INBOXR_API_BASE | https://api.getinboxr.app | Override for self-hosted / dev |

Scopes note

forward:write is not granted by the coarse write scope — tick it explicitly when generating the key, otherwise create_forward / delete_forward return 403. This is deliberate: a forwarding rule can silently redirect mail, so it requires explicit authorisation.