Send WhatsApp messages
from any AI tool

A simple MCP server that lets Cursor, Claude Code, Windsurf, Copilot and any MCP-compatible AI assistant send WhatsApp notifications on your behalf.

Cursor · agent mode
user "Deploy to production and notify me on WhatsApp when done"
assistant use_mcp_tool(send_message_whatsapp)
message: "✅ Deploy finalizado com sucesso!"
name: "My project"

Message sent via PilotStatus · 284ms
Simple by design.
Four steps from install to first message in WhatsApp.
01

Get a token

Register your WhatsApp number and confirm the opt-in. We generate a unique access token tied to your number.

02

Add the MCP

Paste the JSON config into your AI tool settings. Cursor, Claude Code, Windsurf — all take the same format.

03

Ask your AI

Instruct your assistant to notify you via WhatsApp. It calls the MCP tool automatically.

04

Receive messages

Messages arrive on WhatsApp in seconds, delivered via PilotStatus infrastructure.

Works in every MCP-compatible tool.
If it supports MCP, it works. Here are the most popular ones.
Cursor
IDE
Claude Code
CLI
Windsurf
IDE
Trae
IDE
Copilot
IDE
Codex
API
Antigravity
IDE
+
Any MCP tool
Universal
Add it in under 2 minutes.
Select your tool and paste the config. Replace YOUR_TOKEN with your generated token.
~/.cursor/mcp.json
{
  "mcpServers": {
    "mcp-wapp": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-notify-whatsapp",
        "YOUR_TOKEN"
      ]
    }
  }
}
terminal
claude mcp add mcp-wapp -- npx -y mcp-notify-whatsapp YOUR_TOKEN
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "mcp-wapp": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-notify-whatsapp",
        "YOUR_TOKEN"
      ]
    }
  }
}
.vscode/mcp.json
{
  "servers": {
    "mcp-wapp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-notify-whatsapp",
        "YOUR_TOKEN"
      ]
    }
  }
}
mcp config · any tool
{
  "mcpServers": {
    "mcp-wapp": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-notify-whatsapp",
        "YOUR_TOKEN"
      ]
    }
  }
}
tip

For Trae and Codex, use the Generic JSON config — both follow the standard MCP spec. In Trae go to Settings → MCP and paste it there.

Your token, in 60 seconds.

Register your WhatsApp, confirm opt-in, and copy your ready-to-use MCP config.

We only send messages you trigger. No spam.

Confirm on WhatsApp

Send the message below to our PilotStatus number to activate your token. It only takes a tap.

+55 85 93618-0633
MESSAGE TO SEND
Open WhatsApp
Opt-in confirmed. Your token is ready.
mcp.json · ready to paste
{
  "mcpServers": {
    "mcp-wapp": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-notify-whatsapp",
        "YOUR_TOKEN"
      ]
    }
  }
}

Paste this into your tool's MCP config file.
See the setup docs above for per-tool instructions.