Whatify MCP Server
Provides tools for sending WhatsApp messages, templates, and flows, and managing contacts, conversations, campaigns, and wallet balance through the Whatify platform.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Whatify MCP Serversend a WhatsApp message to +919876543210 saying your order is confirmed"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Whatify MCP Server
An MCP (Model Context Protocol) server that exposes Whatify's WhatsApp API — sending messages, templates, and Flows, plus reading contacts, conversations, campaigns, and wallet balance — as tools for MCP-compatible AI clients (Claude Desktop, Claude Code, etc.).
It's a thin wrapper around the existing v1/external REST API
(app/Http/Controllers/Api/ExternalApiController.php), authenticated the same way:
an API key generated from Settings → API Keys in the Whatify dashboard.
Tools
Tool | Maps to | Notes |
|
| Connectivity/auth check |
|
| Free-form text |
|
| Approved templates only |
|
| WhatsApp Flow (interactive form) |
|
| Delivery status |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| Includes delivery/read rate |
|
|
send_flow and reading flows require the API key to have the send_flow /
read_flows permissions (added alongside this server — check the boxes when
generating a key in Settings → API Keys).
Related MCP server: MCP WhatsApp
Setup
Get an API key: log into Whatify → Settings → API Keys → generate a key with the permissions you want the AI tool to have (e.g.
send_message,send_template,send_flow,read_contacts).Install dependencies:
cd mcp-server npm installConfigure environment variables:
WHATIFY_API_KEY— the key from step 1 (required)WHATIFY_API_BASE_URL— defaults tohttp://localhost/api/v1/external; set this to your real app URL, e.g.https://whatify.in/api/v1/external
Using with Claude Desktop / Claude Code
Add to your MCP client config (e.g. claude_desktop_config.json, or via
claude mcp add for Claude Code):
{
"mcpServers": {
"whatify": {
"command": "node",
"args": ["C:/xampp/htdocs/whatify/mcp-server/src/index.js"],
"env": {
"WHATIFY_API_KEY": "wk_xxxxxxxxxxxxxxxx",
"WHATIFY_API_BASE_URL": "https://whatify.in/api/v1/external"
}
}
}
}Restart the client, then ask it to send a message, e.g.:
"Using Whatify, send a WhatsApp message to +91XXXXXXXXXX saying the order has shipped."
Manual test
You can talk to the server directly over stdio for debugging:
npm startthen send newline-delimited JSON-RPC (initialize, tools/list, tools/call) on
stdin. Easier: use the MCP Inspector:
npx @modelcontextprotocol/inspector node src/index.jsMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ashusingh1/whatify-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server