Help us improve
Share bugs, ideas, or general feedback.
From whatsappme
Local stdio MCP server using Bun for WhatsApp integration. Connects to WhatsApp Cloud API for messaging via phone number ID and user phone. Requires app secret, access/verify tokens, ngrok auth token.
npx claudepluginhub AsharibAli/whatsapp-me --plugin whatsappmeCopy 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
Share bugs, ideas, or general feedback.