CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
wazionapps avatar

Mcp Server

wazionapps/mcp-server
authSTDIOregistry active
Summary

Connects Claude and other MCP clients to WAzion's WhatsApp Business platform through 244 tools spanning mass campaigns, AI workflows, CRM, and Shopify integration. You can send messages, manage customer conversations, create auto-reply workflows, run bulk marketing campaigns, analyze sentiment, and handle product Q&A. Supports both direct HTTP transport (no installation) and stdio via npm package. Useful when you need to automate WhatsApp business operations from your AI assistant, whether that's customer support automation, running promotional campaigns to contact lists, or syncing with your Shopify store. Two-step confirmations prevent accidental destructive actions.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

WAzion MCP Server

npm version License: MIT Node.js

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:

CategoryToolsDescription
Mass Marketing39WhatsApp bulk campaigns, contact lists, send configuration, unsubscribe management, and campaign statistics
WhatsApp Operations27Session status, message logs, send messages, workflow execution, and connection management
Plugins18Product Q&A, web chat, document Q&A — install, configure, and monitor plugins
Automation16WhatsApp Auto workflows — create triggers, conditions, AI replies, and scheduled messages
Statistics15Conversation metrics, response times, agent performance, and usage analytics
General Settings13Language, timezone, date format, Shopify integration, and business preferences
Customers13Customer info, notes, tags, search, alerts, and conversation history
AI Prompt12System prompt, custom instructions, AI model settings, and response behavior
Storage12Upload, list, delete, and manage files in cloud storage
Agents11Create, edit, and manage support agents with roles and permissions
Conversations9Search, view, and analyze customer conversations
Activity8Daily and weekly summaries, trends, and operational metrics
AI Analysis7Sentiment analysis, conversation summaries, and AI-powered insights
Advanced6Webhooks, custom functions (function calling), and CRM endpoints
Smart Follow-up6AI-driven purchase intent detection and automated follow-up messages
Tasks6Customer tasks and reminders with assignments and due dates
Integrations5Shopify connection, external services, and third-party platforms
Notifications5System notifications management and preferences
Calendar4Events and scheduled appointments linked to customers
Knowledge Base3Upload and manage documents for AI-powered answers
Account3Account details, billing, and subscription information
Referrals3Referral program — generate links and track commissions
Products2Product search and query statistics
Support1Contact WAzion support

Getting Your API Key

  1. Sign up at wazion.com
  2. Connect your WhatsApp number by scanning the QR code
  3. Go to Settings > Developer and copy your API key

Your API key is the same token used for the dashboard. It uniquely identifies your shop and its configuration.


Environment Variables

VariableRequiredDescription
WAZION_API_KEYYesYour WAzion API key (from Settings > Developer)
WAZION_API_URLNoCustom endpoint URL (default: https://www.wazion.com/api/mcp/). Use this for self-hosted instances.

Examples

Once connected, you can ask your AI assistant things like:

Send a message:

"Send a WhatsApp message to +34612345678 saying: Your order has been shipped!"

Check conversations:

"Show me my most recent conversations from today"

Create an automation:

"Create a workflow that auto-replies with AI when a customer sends a message outside business hours"

Run a campaign:

"Start a mass marketing campaign to my VIP list with the message: Exclusive 20% discount this weekend!"

Analyze performance:

"Give me a summary of this week's activity — messages, response times, and sentiment"


Confirmations

Actions that modify data (deleting workflows, removing agents, clearing lists, etc.) use a two-step confirmation flow:

  1. The first call returns a warning describing what will happen
  2. A second call with confirm: true executes the action

This prevents accidental destructive operations. Your AI client handles this automatically.


Self-Hosted

WAzion can be self-hosted on your own infrastructure. If you're running a self-hosted instance, set the WAZION_API_URL environment variable to point to your server:

WAZION_API_URL=https://your-instance.example.com/api/mcp/

All tools work identically with self-hosted installations.


Troubleshooting

"Unauthorized" or 401 errors

  • Verify your API key is correct (Settings > Developer in the dashboard)
  • Make sure the Authorization: Bearer header is properly formatted
  • Check that your account is active

Connection timeout

  • Ensure https://www.wazion.com is accessible from your network
  • If behind a proxy, configure your HTTP client accordingly
  • For stdio transport, check that Node.js >= 18 is installed

Tools not showing up

  • Confirm the MCP server is connected (check your client's MCP status)
  • Restart your AI client after adding the configuration
  • Verify the API key has not been rotated

WhatsApp messages not sending

  • Check that your WhatsApp session is connected (scan QR if needed)
  • Verify you have sufficient credits in your account
  • Ensure the phone number includes the country code (e.g., +34612345678)

Links

  • WAzion Website
  • API Documentation
  • Developer Integration Guide
  • GitHub Issues

License

MIT - see LICENSE for details.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

Configuration

WAZION_API_KEY*secret

Your WAzion API key from https://wazion.com

Categories
Sales & MarketingCommunication & MessagingAutomation & WorkflowsFinance & Commerce
Registryactive
Packagewazion-mcp-server
TransportSTDIO
AuthRequired
UpdatedMar 6, 2026
View on GitHub

More from wazionapps

  • Nexo

Related Sales & Marketing MCP Servers

View all →
1145-am avatar
Syracuse Company News

1145-am/syracuse-mcp-server

Structured company & industry news for AI agents: typed, dated, source-linked events.
autonomad1 avatar
Computeback

ai.autonomad/computeback

Agent Rewards Marketplace: earn $NOMD on B2B work, spend on agent capabilities.
ai.dataforb2b avatar
DataForB2B

ai.dataforb2b/dataforb2b

Search and enrich B2B people & companies — 70+ filters (funding, linkedin, industry, country, ...).
ai.demanddiscovery avatar
Demand Discovery AI

ai.demanddiscovery/mcp

Sales-agent MCP for Demand Discovery AI. Validate startup ideas with behavioral signals.
ai.gethal avatar
gethal.ai

ai.gethal/mcp

Public MCP for gethal.ai — autonomous AI sales agent. Pricing, features, book a demo.
ai.hostprofit avatar
HostProfit

ai.hostprofit/mcp

Revenue intelligence platform for short-term rental operators.