244 WhatsApp Business tools for AI agents
WAzion MCP Server
Connect your AI assistant to WAzion — the WhatsApp Business platform with AI copilot, automated workflows, mass marketing, CRM, and more. This MCP server exposes 240+ tools that let any MCP-compatible client manage your WhatsApp Business operations through natural language.
Quick Start
Method 1: Direct HTTP (recommended — no install needed)
WAzion's MCP endpoint supports Streamable HTTP transport, so most clients can connect directly without installing anything.
Claude Code:
claude mcp add --transport http wazion https://www.wazion.com/api/mcp/ \
--header "Authorization: Bearer YOUR_API_KEY"
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"wazion": {
"type": "url",
"url": "https://www.wazion.com/api/mcp/",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
Method 2: npm package (for stdio-only clients)
If your client only supports stdio transport, use the npm package as a bridge:
npx -y @wazion/mcp-server
Requires the WAZION_API_KEY environment variable to be set.
Setup by Client
Claude Code
claude mcp add --transport http wazion https://www.wazion.com/api/mcp/ \
--header "Authorization: Bearer YOUR_API_KEY"
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"wazion": {
"type": "url",
"url": "https://www.wazion.com/api/mcp/",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
ChatGPT
In ChatGPT settings, go to Connectors and add a new Streamable HTTP connection:
- URL:
https://www.wazion.com/api/mcp/ - Authentication: Bearer token with your API key
Cursor
Create or edit .cursor/mcp.json in your project root:
{
"mcpServers": {
"wazion": {
"type": "url",
"url": "https://www.wazion.com/api/mcp/",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
Windsurf / VS Code
Add to your settings.json:
{
"mcp.servers": {
"wazion": {
"type": "url",
"url": "https://www.wazion.com/api/mcp/",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
Any stdio-only Client
For clients that only support stdio transport (no HTTP), use the npm package:
WAZION_API_KEY=your_key npx -y @wazion/mcp-server
Or in your client's configuration:
{
"mcpServers": {
"wazion": {
"command": "npx",
"args": ["-y", "@wazion/mcp-server"],
"env": {
"WAZION_API_KEY": "YOUR_API_KEY"
}
}
}
}
Available Tools
WAzion exposes 244 tools across 24 categories. Here are the main ones:
| Category | Tools | Description |
|---|---|---|
| Mass Marketing | 39 | WhatsApp bulk campaigns, contact lists, send configuration, unsubscribe management, and campaign statistics |
| WhatsApp Operations | 27 | Session status, message logs, send messages, workflow execution, and connection management |
| Plugins | 18 | Product Q&A, web chat, document Q&A — install, configure, and monitor plugins |
| Automation | 16 | WhatsApp Auto workflows — create triggers, conditions, AI replies, and scheduled messages |
| Statistics | 15 | Conversation metrics, response times, agent performance, and usage analytics |
| General Settings | 13 | Language, timezone, date format, Shopify integration, and business preferences |
| Customers | 13 | Customer info, notes, tags, search, alerts, and conversation history |
| AI Prompt | 12 | System prompt, custom instructions, AI model settings, and response behavior |
| Storage | 12 | Upload, list, delete, and manage files in cloud storage |
| Agents | 11 | Create, edit, and manage support agents with roles and permissions |
| Conversations | 9 | Search, view, and analyze customer conversations |
| Activity | 8 | Daily and weekly summaries, trends, and operational metrics |
| AI Analysis | 7 | Sentiment analysis, conversation summaries, and AI-powered insights |
| Advanced | 6 | Webhooks, custom functions (function calling), and CRM endpoints |
| Smart Follow-up | 6 | AI-driven purchase intent detection and automated follow-up messages |
| Tasks | 6 | Customer tasks and reminders with assignments and due dates |
| Integrations | 5 | Shopify |
Tools (5)
mass_marketing_toolsManage WhatsApp bulk campaigns, contact lists, and unsubscribe management.whatsapp_operationsHandle session status, message logs, and connection management.automation_workflowsCreate triggers, conditions, AI replies, and scheduled messages.customer_managementManage customer info, notes, tags, and conversation history.ai_analysisPerform sentiment analysis and generate conversation summaries.Environment Variables
WAZION_API_KEYrequiredAPI key for authenticating with the WAzion platform.Configuration
{"mcpServers": {"wazion": {"type": "url", "url": "https://www.wazion.com/api/mcp/", "headers": {"Authorization": "Bearer YOUR_API_KEY"}}}}