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

@codespar/mcp-evolution-api

v0.2.1

Published

MCP server for Evolution API — WhatsApp messaging, instances, contacts

Readme

@codespar/mcp-evolution-api

MCP server for Evolution API — self-hosted WhatsApp messaging API

npm License: MIT

Quick Start

Claude Desktop

Add to ~/.config/claude/claude_desktop_config.json:

{
  "mcpServers": {
    "evolution-api": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-evolution-api"],
      "env": {
        "EVOLUTION_API_URL": "https://your-instance.example.com",
        "EVOLUTION_API_KEY": "your-key"
      }
    }
  }
}

Claude Code

claude mcp add evolution-api -- npx @codespar/mcp-evolution-api

Cursor / VS Code

Add to .cursor/mcp.json or .vscode/mcp.json:

{
  "servers": {
    "evolution-api": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-evolution-api"],
      "env": {
        "EVOLUTION_API_URL": "https://your-instance.example.com",
        "EVOLUTION_API_KEY": "your-key"
      }
    }
  }
}

Tools (25)

| Tool | Purpose | |---|---| | send_text | Send a text message via WhatsApp | | send_image | Send an image message via WhatsApp | | send_document | Send a document via WhatsApp | | get_instances | List all WhatsApp instances | | create_instance | Create a new WhatsApp instance | | get_qrcode | Get QR code for instance pairing | | get_contacts | Get contacts from an instance | | send_poll | Send a poll message via WhatsApp | | get_messages | Get messages from a chat | | check_number | Check if a phone number is registered on WhatsApp | | create_group | Create a WhatsApp group | | get_group_info | Get group metadata, participants, and settings | | update_profile | Update instance profile (name, status text, or picture) | | set_presence | Set online/offline presence for an instance | | get_chat_history | Get full chat history with pagination support | | logout_instance | Logout an instance (disconnects the WhatsApp session without deleting the instance) | | restart_instance | Restart an instance | | delete_instance | Delete an instance permanently | | connection_state | Get the connection state of an instance (open, connecting, close) | | leave_group | Leave a WhatsApp group | | update_group_participants | Add, remove, promote, or demote participants in a WhatsApp group | | fetch_group_invite_code | Fetch the invite code/link for a WhatsApp group | | mark_message_as_read | Mark one or more messages in a chat as read | | archive_chat | Archive or unarchive a chat | | delete_message | Delete a message for me or for everyone in a chat |

Authentication

Evolution API uses an API key passed via the apikey header.

Sandbox / Testing

Evolution API is self-hosted. Deploy your own instance using Docker for testing.

Get your credentials

  1. Go to Evolution API Documentation
  2. Deploy your own instance (Docker recommended)
  3. Get the API key from your instance configuration
  4. Set the environment variables

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | EVOLUTION_API_URL | Yes | Base URL of your Evolution API instance | | EVOLUTION_API_KEY | Yes | API key for authentication |

Roadmap

v0.2 (planned)

  • create_group — Create a WhatsApp group
  • get_group_info — Get group details and participants
  • update_profile — Update instance profile (name, photo, status)
  • set_presence — Set online/offline presence status
  • get_chat_history — Get full chat history with a contact

v0.3 (planned)

  • bulk_send — Send messages to multiple contacts
  • template_messages — Send WhatsApp Business template messages
  • label_management — Create, update, and assign labels to chats

Want to contribute? Open a PR or request a tool.

Links

Enterprise

Need governance, budget limits, and audit trails for agent payments? CodeSpar Enterprise adds policy engine, payment routing, and compliance templates on top of these MCP servers.

License

MIT