From whatsappme
Connects to the WhatsApp Business API to send and receive messages, manage conversations, and handle webhook events. Requires WhatsApp access token, phone number ID, and app secret.
Copy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"whatsappme": {
"command": "bun",
"args": [
"run",
"--cwd",
"${CLAUDE_PLUGIN_ROOT}/server",
"start"
],
"env": {
"WHATSAPPME_PORT": "${WHATSAPPME_PORT:-3333}",
"WHATSAPPME_APP_SECRET": "${WHATSAPPME_APP_SECRET}",
"WHATSAPPME_ACCESS_TOKEN": "${WHATSAPPME_ACCESS_TOKEN}",
"WHATSAPPME_VERIFY_TOKEN": "${WHATSAPPME_VERIFY_TOKEN}",
"WHATSAPPME_NGROK_AUTHTOKEN": "${WHATSAPPME_NGROK_AUTHTOKEN}",
"WHATSAPPME_PHONE_NUMBER_ID": "${WHATSAPPME_PHONE_NUMBER_ID}",
"WHATSAPPME_USER_PHONE_NUMBER": "${WHATSAPPME_USER_PHONE_NUMBER}"
}
}
}
}Replace placeholder values for: WHATSAPPME_ACCESS_TOKEN, WHATSAPPME_APP_SECRET, WHATSAPPME_VERIFY_TOKEN
Review these signals before enabling this server
This MCP server needs API keys or credentials. Configure them in your environment before use.
This server has elevated permissions. Review the source code before enabling.
Server configuration and connection parameters
bunCommand-line arguments passed to the server process
Environment variables set when the server starts
WHATSAPPME_PORT=${WHATSAPPME_PORT:-3333}WHATSAPPME_APP_SECRET=${WHATSAPPME_APP_SECRET}WHATSAPPME_ACCESS_TOKEN=${WHATSAPPME_ACCESS_TOKEN}WHATSAPPME_VERIFY_TOKEN=${WHATSAPPME_VERIFY_TOKEN}WHATSAPPME_NGROK_AUTHTOKEN=${WHATSAPPME_NGROK_AUTHTOKEN}WHATSAPPME_PHONE_NUMBER_ID=${WHATSAPPME_PHONE_NUMBER_ID}WHATSAPPME_USER_PHONE_NUMBER=${WHATSAPPME_USER_PHONE_NUMBER}Sensitive values you must provide — never committed to source control
npx claudepluginhub AsharibAli/whatsapp-me --plugin whatsappme