WhatsApp Messaging API for VS Code
io.github.jevil25/whatsapp-messaging-api-mcp
Send WhatsApp messages from Claude. No Meta Business approval or WhatsApp Business account.
client:VS Code
transport:stdio
runtime:npm
Install WhatsApp Messaging API in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "whatsapp-api-key",
"description": "WHATSAPP_API_KEY",
"password": true
}
],
"servers": {
"whatsapp-messaging-api-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"whatsapp-messaging-api-mcp"
],
"env": {
"WHATSAPP_API_KEY": "${input:whatsapp-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs