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

@3-bees-online/mcp-server-smsvertpro

v1.0.2

Published

MCP server to send professional SMS via SMS Vert Pro — 9 tools including OTP, delivery reports, scheduled SMS with cancellation

Readme

SMS Vert Pro — MCP Server (TypeScript)

MCP server in TypeScript to send professional SMS via SMS Vert Pro from any AI agent: Claude, ChatGPT, Cursor, Windsurf, etc.

Also available in Python and PHP

Quick Start (30 seconds)

SMSVERTPRO_API_TOKEN=your_token npx @3-bees-online/mcp-server-smsvertpro

That's it. No git clone, no build step.

Prerequisites

  1. Node.js 18+
  2. A SMS Vert Pro accountfree signup (10 free SMS)
  3. An API Bearer token — generate it from your account

Configuration

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "smsvertpro": {
      "command": "npx",
      "args": ["@3-bees-online/mcp-server-smsvertpro"],
      "env": {
        "SMSVERTPRO_API_TOKEN": "your_api_token"
      }
    }
  }
}

Claude Code (CLI)

claude mcp add smsvertpro -- npx @3-bees-online/mcp-server-smsvertpro

Cursor / Windsurf

Add the MCP configuration in your editor settings, pointing to npx @3-bees-online/mcp-server-smsvertpro with the SMSVERTPRO_API_TOKEN environment variable.

Available Tools (9)

| Tool | Description | |---|---| | send_sms | Send an SMS (immediate or scheduled) | | check_credits | Check SMS credit balance | | get_delivery_report | Delivery report for a campaign | | get_responses | SMS replies received (2-way SMS) | | verify_number | Verify phone number format | | get_blacklist | Unsubscribe list (STOP) | | generate_otp | Send an OTP code via SMS | | verify_otp | Verify an OTP code | | cancel_sms | Cancel a scheduled SMS or campaign |

Usage Examples

Once the MCP server is connected, simply ask your AI agent:

  • "Send an SMS to 33612345678 to announce our spring sale -20%"
  • "How many SMS credits do I have left?"
  • "Check if the SMS from campaign 12345 was delivered"
  • "Send an OTP code to 33698765432 to confirm the signup"
  • "Cancel campaign camp_334_1234"

The AI agent will automatically use the right tools with the right parameters.

Phone Number Format

Phone numbers must be in international format without +:

  • France: 33612345678 (not 0612345678, not +33612345678)
  • Belgium: 32470123456
  • Switzerland: 41791234567

Security

  • Input validation (phone numbers, sender, OTP codes, dates)
  • Your API token stays on your machine, never shared with the AI agent
  • The server only communicates with https://www.smsvertpro.com/api/v2/
  • For marketing SMS, add STOP 36173 at the end of the message (legal requirement)

Local Development

git clone https://github.com/3-bees-online/mcp-server-smsvertpro-typescript.git
cd mcp-server-smsvertpro-typescript
npm install
npm run build
SMSVERTPRO_API_TOKEN=your_token npm start

Links

License

MIT — See LICENSE