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-zenvia

v0.2.1

Published

MCP server for Zenvia — SMS, WhatsApp, RCS, Email, Voice, Facebook messaging, templates and reports

Readme

@codespar/mcp-zenvia

MCP server for Zenvia — multichannel messaging (SMS, WhatsApp, RCS)

npm License: MIT

Quick Start

Claude Desktop

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

{
  "mcpServers": {
    "zenvia": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-zenvia"],
      "env": {
        "ZENVIA_API_TOKEN": "your-token"
      }
    }
  }
}

Claude Code

claude mcp add zenvia -- npx @codespar/mcp-zenvia

Cursor / VS Code

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

{
  "servers": {
    "zenvia": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-zenvia"],
      "env": {
        "ZENVIA_API_TOKEN": "your-token"
      }
    }
  }
}

Tools (18)

| Tool | Purpose | |---|---| | send_sms | Send an SMS message | | send_whatsapp | Send a WhatsApp message | | send_rcs | Send an RCS (Rich Communication Services) message | | send_email | Send a transactional email | | send_voice | Send a voice message via TTS or pre-recorded audio URL | | send_facebook_message | Send a Facebook Messenger message | | get_message_status | Get message delivery status by ID | | list_channels | List available messaging channels | | create_subscription | Create a webhook subscription for message events | | list_subscriptions | List all webhook subscriptions | | delete_subscription | Delete a webhook subscription by ID | | list_contacts | List contacts from the contact base | | create_contact | Create a contact in the contact base | | delete_contact | Delete a contact by ID | | send_template | Send a WhatsApp template message (pre-approved) | | list_templates | List approved message templates (WhatsApp/SMS/RCS) | | get_report_entries | Get message report entries within a date range | | add_opt_out | Add a phone number to the opt-out list (suppresses future messages) |

Authentication

Zenvia uses an API token passed via the X-API-TOKEN header.

Sandbox / Testing

Zenvia provides a sandbox via the dashboard for testing messages.

Get your credentials

  1. Go to Zenvia
  2. Create an account
  3. Get your API token from the dashboard
  4. Set the ZENVIA_API_TOKEN environment variable

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | ZENVIA_API_TOKEN | Yes | API token from Zenvia dashboard |

Roadmap

v0.2 (planned)

  • create_contact_list — Create a contact list for campaigns
  • send_batch — Send batch messages to a contact list
  • get_report — Get message delivery reports
  • create_flow — Create a conversational flow
  • list_templates — List approved message templates

v0.3 (planned)

  • chatbot_integration — Integrate with Zenvia chatbot builder
  • analytics_dashboard — Get channel analytics and metrics

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