io.github.wazionapps/mcp-server

平台与服务

by wazionapps

提供 244 个 WhatsApp Business AI 工具,覆盖消息发送、自动化、营销、CRM 与 Shopify。

什么是 io.github.wazionapps/mcp-server

提供 244 个 WhatsApp Business AI 工具,覆盖消息发送、自动化、营销、CRM 与 Shopify。

README

WAzion MCP Server

<!-- TODO: Replace with actual logo --> <!-- ![WAzion Logo](https://www.wazion.com/assets/logo.png) -->

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:

bash
claude mcp add --transport http wazion https://www.wazion.com/api/mcp/ \
  --header "Authorization: Bearer YOUR_API_KEY"

Claude Desktop (claude_desktop_config.json):

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:

bash
npx -y @wazion/mcp-server

Requires the WAZION_API_KEY environment variable to be set.


Setup by Client

Claude Code

bash
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:

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:

json
{
  "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:

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:

bash
WAZION_API_KEY=your_key npx -y @wazion/mcp-server

Or in your client's configuration:

json
{
  "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:

bash
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


License

MIT - see LICENSE for details.

常见问题

io.github.wazionapps/mcp-server 是什么?

提供 244 个 WhatsApp Business AI 工具,覆盖消息发送、自动化、营销、CRM 与 Shopify。

相关 Skills

MCP构建

by anthropics

Universal
热门

聚焦高质量 MCP Server 开发,覆盖协议研究、工具设计、错误处理与传输选型,适合用 FastMCP 或 MCP SDK 对接外部 API、封装服务能力。

想让 LLM 稳定调用外部 API,就用 MCP构建:从 Python 到 Node 都有成熟指引,帮你更快做出高质量 MCP 服务器。

平台与服务
未扫描114.1k

Slack动图

by anthropics

Universal
热门

面向Slack的动图制作Skill,内置emoji/消息GIF的尺寸、帧率和色彩约束、校验与优化流程,适合把创意或上传图片快速做成可直接发送的Slack动画。

帮你快速做出适配 Slack 的动图,内置约束规则和校验工具,少踩上传与播放坑,做表情包和演示都更省心。

平台与服务
未扫描114.1k

MCP服务构建器

by alirezarezvani

Universal
热门

从 OpenAPI 一键生成 Python/TypeScript MCP server 脚手架,并校验 tool schema、命名规范与版本兼容性,适合把现有 REST API 快速发布成可生产演进的 MCP 服务。

帮你快速搭建 MCP 服务与后端 API,脚手架完善、扩展顺手,尤其适合想高效验证服务能力的开发者。

平台与服务
未扫描10.2k

相关 MCP Server

Slack 消息

编辑精选

by Anthropic

热门

Slack 是让 AI 助手直接读写你的 Slack 频道和消息的 MCP 服务器。

这个服务器解决了团队协作中需要 AI 实时获取 Slack 信息的痛点,特别适合开发团队让 Claude 帮忙汇总频道讨论或发送通知。不过,它目前只是参考实现,文档有限,不建议在生产环境直接使用——更适合开发者学习 MCP 如何集成第三方服务。

平台与服务
83.4k

by netdata

热门

io.github.netdata/mcp-server 是让 AI 助手实时监控服务器指标和日志的 MCP 服务器。

这个工具解决了运维人员需要手动检查系统状态的痛点,最适合 DevOps 团队让 Claude 自动分析性能数据。不过,它依赖 NetData 的现有部署,如果你没用过这个监控平台,得先花时间配置。

平台与服务
78.4k

by d4vinci

热门

Scrapling MCP Server 是专为现代网页设计的智能爬虫工具,支持绕过 Cloudflare 等反爬机制。

这个工具解决了爬取动态网页和反爬网站时的头疼问题,特别适合需要批量采集电商价格或新闻数据的开发者。不过,它依赖外部浏览器引擎,资源消耗较大,不适合轻量级任务。

平台与服务
35.4k

评论