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

quackr-mcp

v1.0.2

Published

MCP launcher for Quackr — virtual phone numbers for SMS verification and OTP receipt. Bridges stdio MCP clients to the hosted Quackr server at https://mcp.quackr.io/.

Readme

Quackr MCP Server

npm version npm downloads License: MIT

Official MCP server for Quackr — virtual phone numbers for SMS verification and OTP receipt. Use Claude (or any MCP-compatible client) to check pricing and inventory, purchase temporary numbers, and read incoming SMS programmatically.

  • npm: quackr-mcpnpx -y quackr-mcp
  • Hosted endpoint: https://mcp.quackr.io/
  • Transport: Streamable HTTP
  • Auth: Authorization: Bearer YOUR_API_KEY header

Tools

| Tool | Description | |---|---| | get-balance | Get the current account balance in USD | | get-pricing | Get phone number rental pricing for a specific country | | get-inventory | Check available phone number inventory for a country | | purchase-number | Purchase a temporary number for receiving SMS (deducts from balance) | | check-sms | Check SMS messages received on a rented number | | list-active-numbers | List all currently active (rented) numbers on the account |

Getting an API Key

  1. Sign in at quackr.io
  2. Open your profile page
  3. Copy the API key from the API section

Install via npm

The quackr-mcp package is a thin stdio launcher that bridges any stdio MCP client to the hosted Quackr endpoint. It needs Node.js 18+ — no separate install required, npx fetches it on first run.

{
  "mcpServers": {
    "quackr": {
      "command": "npx",
      "args": ["-y", "quackr-mcp"],
      "env": {
        "QUACKR_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}

You can also pass the key as a flag instead of an env var: npx -y quackr-mcp --api-key YOUR_API_KEY_HERE.

Claude Code Setup

Remote (recommended) — connect directly to the hosted endpoint. Add to your ~/.claude.json (or a project .mcp.json):

{
  "mcpServers": {
    "quackr": {
      "type": "http",
      "url": "https://mcp.quackr.io/",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY_HERE"
      }
    }
  }
}

Or via the CLI:

claude mcp add --transport http quackr https://mcp.quackr.io/ --header "Authorization: Bearer YOUR_API_KEY_HERE"

Claude Desktop Setup

Claude Desktop's JSON config only supports local (stdio) servers. Use the npm launcher (see Install via npm) by adding the npx quackr-mcp config above to claude_desktop_config.json, then restart Claude Desktop.

Alternatively, add Quackr as a remote connector: Settings → Connectors → Add custom connector, enter https://mcp.quackr.io/, and add an Authorization header with the value Bearer YOUR_API_KEY.

Other MCP Clients

Any client supporting remote Streamable HTTP MCP servers with custom headers works. Point it at https://mcp.quackr.io/ and pass your key via the Authorization: Bearer YOUR_API_KEY header.

REST API

Quackr also exposes a full REST API at https://api.quackr.io/ — see api.quackr.io/swagger.json for the full spec. Same x-api-key auth.

Support

License

MIT — see LICENSE.