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

whatsapp-sender-pro-mcp

v1.0.1

Published

MCP Server for WhatsApp Sender Pro - Send bulk WhatsApp messages via AI assistants like Claude

Readme

WhatsApp Sender Pro MCP Server

npm version License: MIT

Model Context Protocol (MCP) server for WhatsApp Sender Pro. This allows AI assistants like Claude to send WhatsApp messages, manage contacts, and run marketing campaigns on your behalf.

Website: https://whatsappsender.speedliv.com Chrome Extension: Install from Chrome Web Store

Features

Tools

  • send_whatsapp_message - Send a message to a single contact
  • send_bulk_messages - Send messages to multiple contacts with human-like delays
  • get_contacts - Retrieve your saved contacts
  • add_contact - Add a new contact
  • import_contacts - Import multiple contacts at once
  • get_message_history - View sent messages and their status
  • get_credits_balance - Check your credits balance
  • get_analytics - View messaging statistics
  • create_message_template - Create reusable templates
  • authenticate - Login to your account

Resources

  • whatsapp://contacts - All saved contacts
  • whatsapp://templates - Message templates
  • whatsapp://stats - Usage statistics
  • whatsapp://account - Account information

Prompts

  • send_marketing_campaign - Create and send marketing campaigns
  • send_appointment_reminder - Send appointment reminders
  • customer_followup - Follow up with customers after purchase
  • event_invitation - Send event invitations

Installation

Option 1: NPX (No installation required)

npx whatsapp-sender-pro-mcp

Option 2: NPM Global Install

npm install -g whatsapp-sender-pro-mcp
whatsapp-sender-mcp

Option 3: From Source

git clone https://github.com/whatsapp-sender-pro/mcp-server
cd mcp-server
npm install
npm start

Configuration

For Claude Desktop

Add to your Claude Desktop configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "whatsapp-sender": {
      "command": "npx",
      "args": ["whatsapp-sender-pro-mcp"],
      "env": {
        "WHATSAPP_API_URL": "https://whatsapp-backend-prod.worksaas.workers.dev"
      }
    }
  }
}

Or if installed globally:

{
  "mcpServers": {
    "whatsapp-sender": {
      "command": "whatsapp-sender-mcp",
      "env": {
        "WHATSAPP_API_URL": "https://whatsapp-backend-prod.worksaas.workers.dev"
      }
    }
  }
}

For Claude Code

Add to your project's .claude/settings.json:

{
  "mcpServers": {
    "whatsapp-sender": {
      "command": "npx",
      "args": ["whatsapp-sender-pro-mcp"],
      "env": {
        "WHATSAPP_API_URL": "https://whatsapp-backend-prod.worksaas.workers.dev"
      }
    }
  }
}

Usage Examples

Authenticate First

Use the authenticate tool with my email and password to login

Send a Single Message

Send a WhatsApp message to +1234567890 saying "Hello! Thanks for your interest in our product."

Send Bulk Campaign

Get my contacts and send a promotional message about our 20% holiday sale to all of them

Check Analytics

Show me my messaging statistics for the past week

Use a Prompt

Use the send_marketing_campaign prompt to promote our new fitness app with a 30-day free trial offer

Environment Variables

| Variable | Description | Default | |----------|-------------|---------| | WHATSAPP_API_URL | API server URL | https://whatsapp-backend-prod.worksaas.workers.dev | | WHATSAPP_API_TOKEN | JWT authentication token | None (use authenticate tool) |

Security

  • Never share your API token
  • The MCP server runs locally and communicates with the WhatsApp Sender API
  • All messages are sent through your authenticated account
  • Credits are deducted per message sent

Support

  • Website: https://whatsappsender.speedliv.com
  • Chrome Extension: https://chromewebstore.google.com/detail/whatsapp-sender-pro/akaajmihnfkohfcpbohmephlldmlibok
  • Email: [email protected]

License

MIT