- Wassenger Whatsapp Connector
Wassenger Whatsapp Connector
About Wassenger is a versatile WhatsApp Team Chat and API solution for business messaging to automate anything on WhatsApp.
Check out the API documentation and examples here
Product update: 🚀 Automate anything on WhatsApp with our new No-Code solution Wassenger Flows ⚡✨
Example prompts Chat with your WhatsApp conversations from any AI clients or agentic tool integration.
Here are various prompts you can use with any AI assistant to interact with WhatsApp through the Wassenger MCP connector:
📱 Basic Messaging & Communication "Send a WhatsApp message to +1234567890 saying 'Hello! How are you today?'" "Send a message to the contact named 'John Smith' with the text 'Meeting confirmed for 3 PM'" "Send an urgent message to +44123456789: 'Please call me back ASAP'" "Send a WhatsApp message with an image from [URL] to [phone-number]" "Reply to message [message-id] in chat [chat-id] with 'Thanks for your feedback!'" 📊 Conversation Analysis & Insights "Summarize my last 10 WhatsApp messages with +1555123456" "Analyze the conversation tone in my chat with the Marketing Team group" "Show me the key topics discussed in my conversation with Sarah over the past week" "Count how many messages I've received today from all contacts" "Search for messages containing 'invoice' in chat [chat-id]" "Generate chat activity report grouped by day for this month" 👥 Group & Team Management "Create a WhatsApp group called 'Team Updates' with participants +1234567890, +0987654321" "How many participants are in the 'Project Team Alpha' WhatsApp group?" "List all members of my 'Family Chat' group" "Add +1234567890 to WhatsApp group [group-id]" "Make +1234567890 an admin in group [group-id]" "Get the invite link for group [group-id]" ⏰ Message Scheduling & Automation "Schedule a message to +1234567890 saying 'Happy Birthday!' to be sent tomorrow at 9 AM" "Set up a reminder message for the team group about the meeting next Friday at 2 PM" "Set up auto-replies for messages received outside business hours (9 AM - 5 PM)" "Create a workflow: when someone messages 'INFO', automatically send our company brochure" 🔍 Contact & Device Management "Check if the phone number +1555987654 is a valid WhatsApp number" "What WhatsApp numbers do I have connected to Wassenger?" "Show me the status of all my WhatsApp devices" "Get the profile information for contact +1234567890" "Show me all my recent contacts from the past month" 📈 Analytics & Reporting "Generate a report of my most frequent WhatsApp contacts this month" "Show me my busiest WhatsApp conversation days this week" "Which agent responds fastest to customer inquiries?" "Show me chat volume trends over the last 30 days" "Count unread messages across all my chats" "Find customers who haven't interacted in the last 60 days" 🔔 Status & Monitoring "Check the delivery status of my last message to +1234567890" "Show me all failed message deliveries from today" "Monitor if my contact +1555123456 has read my recent messages" "Post 'Working on exciting new features!' as my WhatsApp status" 🔄 Bulk Operations & Campaigns "Send the same announcement to all members of my 'Team Updates' group individually" "Broadcast a holiday greeting to my top 10 most contacted numbers" "Create a campaign called 'Welcome Series' to send 'Welcome to our service!' to multiple contacts" "Start campaign [campaign-id] and check its delivery status" 🎯 Smart Business Automation "Create a label called 'VIP Customer' with red color and apply it to important chats" "Assign chat [chat-id] to agent [agent-id]" "Show me all chats with the 'support' label" "Analyze sentiment in customer support conversations and flag negative ones" "Generate a CSV report of all chats with their last activity" "Find all unread messages in my WhatsApp chats" 🔐 Account & File Management "Show me my current Wassenger account usage and limits" "Upload an image from [image-url] to use in WhatsApp messages" "List all uploaded files tagged as 'marketing'" "Export all contacts from device [device-id] to JSON" These prompts cover real-world scenarios for businesses using WhatsApp for customer service, marketing, team collaboration, and automation through the Wassenger platform.
HTTP streaming usage If your MCP client supports HTTP streaming (previously known as Server-Sent Events or SSE transport), you can connect directly to the Wassenger MCP server without installing this package. This is the preferred method as it's faster and requires no local setup.
Supported Clients Most modern MCP clients support HTTP streaming, including:
Claude Desktop (latest versions) VS Code Copilot with MCP extension Cursor (v0.48.0+) Windsurf OpenAI Responses API ChatGPT (Pro users have access, soon more users) Claude Desktop Configuration Add this to your claude_desktop_config.json:
{ "mcpServers": { "wassenger": { "type": "http", "url": "https://api.wassenger.com/mcp?key=YOUR_WASSENGER_API_KEY" } } }
Or using environment variables:
{ "mcpServers": { "wassenger": { "type": "http", "url": "https://api.wassenger.com/mcp?key=${WASSENGER_API_KEY}", "env": { "WASSENGER_API_KEY": "your-api-key-here" } } } } VS Code Copilot Configuration In VS Code settings (JSON format):
{ "mcp.servers": { "wassenger": { "url": "https://api.wassenger.com/mcp?key=YOUR_WASSENGER_API_KEY", "transport": "http-streaming" } } }
Benefits of HTTP Streaming ✅ No local installation required ✅ Faster connection times ✅ Automatic updates - always uses the latest server version ✅ Better reliability - no Node.js dependency issues ✅ Simpler configuration - just a URL
Server Config
{
"mcpServers": {
"wassenger": {
"command": "npx",
"args": [
"mcp-wassenger",
"$API_KEY"
]
}
}
}