WhatsApp MCP for VS Code
io.github.adelaidasofia/whatsapp-mcp
WhatsApp MCP. SQLCipher-encrypted, scrubber-CI-gated, draft-and-confirm sends, voice transcription.
client:VS Code
transport:stdio
runtime:pypi
Install WhatsApp MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "whatsapp-bridge-host",
"description": "WHATSAPP_BRIDGE_HOST",
"password": true
},
{
"type": "promptString",
"id": "whatsapp-bridge-port",
"description": "WHATSAPP_BRIDGE_PORT",
"password": true
},
{
"type": "promptString",
"id": "whatsapp-vault-crm-path",
"description": "WHATSAPP_VAULT_CRM_PATH",
"password": true
},
{
"type": "promptString",
"id": "whatsapp-whisper-backend",
"description": "WHATSAPP_WHISPER_BACKEND",
"password": true
},
{
"type": "promptString",
"id": "whatsapp-whisper-api-key",
"description": "WHATSAPP_WHISPER_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "whatsapp-whisper-model",
"description": "WHATSAPP_WHISPER_MODEL",
"password": true
},
{
"type": "promptString",
"id": "whatsapp-scrub-prompt-injection",
"description": "WHATSAPP_SCRUB_PROMPT_INJECTION",
"password": true
},
{
"type": "promptString",
"id": "whatsapp-audit-log",
"description": "WHATSAPP_AUDIT_LOG",
"password": true
},
{
"type": "promptString",
"id": "whatsapp-encrypt-db",
"description": "WHATSAPP_ENCRYPT_DB",
"password": true
}
],
"servers": {
"whatsapp-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"adelaidasofia-whatsapp-mcp"
],
"env": {
"WHATSAPP_BRIDGE_HOST": "${input:whatsapp-bridge-host}",
"WHATSAPP_BRIDGE_PORT": "${input:whatsapp-bridge-port}",
"WHATSAPP_VAULT_CRM_PATH": "${input:whatsapp-vault-crm-path}",
"WHATSAPP_WHISPER_BACKEND": "${input:whatsapp-whisper-backend}",
"WHATSAPP_WHISPER_API_KEY": "${input:whatsapp-whisper-api-key}",
"WHATSAPP_WHISPER_MODEL": "${input:whatsapp-whisper-model}",
"WHATSAPP_SCRUB_PROMPT_INJECTION": "${input:whatsapp-scrub-prompt-injection}",
"WHATSAPP_AUDIT_LOG": "${input:whatsapp-audit-log}",
"WHATSAPP_ENCRYPT_DB": "${input:whatsapp-encrypt-db}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs