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

evolution-whatsapp-mcp

v0.1.0

Published

MCP server that exposes WhatsApp (via the Evolution API) as tools for Claude and any MCP client — send/read messages, templates, and manage instances.

Readme

evolution-whatsapp-mcp

An MCP server that gives Claude (and any MCP client) hands on WhatsApp — send and read messages, send media, and manage connections through the Evolution API. Wire it into Claude Desktop/Code and your AI agent can connect a WhatsApp number and have real conversations.

CI Node License: MIT

Extracted and generalized from a production WhatsApp integration (a multi-tenant clinic SaaS), so the messaging/instance layer is battle-tested — not a toy.

Tools

| Tool | Description | |---|---| | send_text | Send a text message to a phone number | | send_media | Send an image / video / document / audio (URL or base64) | | find_chats | List the conversations on the instance | | find_messages | Read a chat's message history (by phone or JID) | | create_instance | Create a new instance (a WhatsApp connection slot) | | get_qrcode | Get the QR code (base64) to link a WhatsApp number | | connection_status | Check whether the instance is connected | | disconnect_instance | Log the WhatsApp number out of the instance | | configure_webhook | Point the instance webhook to a public URL |

Every tool takes an optional instance argument; if omitted it falls back to EVOLUTION_DEFAULT_INSTANCE.

Prerequisites

A running Evolution API server (v2.x) and its API key. The quickest way to run one locally is the official Docker image:

docker run -d --name evolution -p 8080:8080 \
  -e AUTHENTICATION_API_KEY=your-evolution-api-key \
  atendai/evolution-api:latest

Install & configure

Add it to your MCP client. For Claude Desktop / Claude Code (mcpServers config):

{
  "mcpServers": {
    "whatsapp": {
      "command": "npx",
      "args": ["-y", "evolution-whatsapp-mcp"],
      "env": {
        "EVOLUTION_API_URL": "http://localhost:8080",
        "EVOLUTION_API_KEY": "your-evolution-api-key",
        "EVOLUTION_DEFAULT_INSTANCE": "my-whatsapp"
      }
    }
  }
}

| Env var | Required | Description | |---|---|---| | EVOLUTION_API_URL | ✅ | Base URL of your Evolution API server | | EVOLUTION_API_KEY | ✅ | Evolution API key (sent as the apikey header) | | EVOLUTION_DEFAULT_INSTANCE | — | Default instance when a tool omits instance |

Example flow (end to end)

Ask Claude:

  1. "Create a WhatsApp instance called my-whatsapp and show me the QR code."create_instance + get_qrcode (scan it with your phone).
  2. "Is it connected?"connection_status.
  3. "Send 'Your appointment is confirmed ✅' to +55 11 99999-9999."send_text.
  4. "What did they reply?"find_messages.

Development

npm install
npm run build      # tsc → dist/
npm test           # vitest (mocks the Evolution API; no server needed)
npm run lint       # tsc --noEmit

Inspect the server locally with the MCP Inspector:

EVOLUTION_API_URL=http://localhost:8080 EVOLUTION_API_KEY=key \
  npx @modelcontextprotocol/inspector node dist/index.js

How it works

A thin REST client (src/evolution.ts) wraps the Evolution endpoints and authenticates with the apikey header. src/tools.ts registers each operation as an MCP tool with a zod input schema; src/index.ts serves them over stdio. No business logic, no database — just a clean bridge between an MCP client and the Evolution API.

License

MIT © Ewerton Silva