Omnichannel messaging: SMS, WhatsApp, and RCS with template management. Your agent reaches customers on their preferred channel.
Zenvia gives your agent 18 tools it calls directly — pick the ones it needs, in Claude, Cursor, or any MCP client.
send_sms — Send an SMS messagesend_whatsapp — Send a WhatsApp messagesend_rcs — Send an RCS (Rich Communication Services) message// Your agent calls a tool directly — no glue code.
// CodeSpar's managed tier handles OAuth2, token rotation and rate limits.
const result = await session.call("send_sms", { /* ... */ });$ npm install @codespar/mcp-zenviaAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"zenvia": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-zenvia"
],
"env": {
"ZENVIA_API_TOKEN": "<your_zenvia_api_token>"
}
}
}
}After restart, your agent can call any of the 18 tools below — try send_sms first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
ZENVIA_API_TOKENAPI key for zenvia
Each tool is independent — your agent loads only what it needs to reduce context and response time.
send_smssend_whatsappsend_rcssend_emailsend_voicesend_facebook_messageget_message_statuslist_channelsMCP is a protocol — any framework that speaks it can mount this server.