wazap for VS Code
io.github.razvangirgiz/wazap
WhatsApp for your agent: chats, messages, media, contacts and groups behind MCP tools.
client:VS Code
transport:stdio
runtime:npm
Install wazap in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "wazap-read-only",
"description": "WAZAP_READ_ONLY",
"password": true
},
{
"type": "promptString",
"id": "wazap-data-dir",
"description": "WAZAP_DATA_DIR",
"password": true
}
],
"servers": {
"wazap": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"wazap-mcp"
],
"env": {
"WAZAP_READ_ONLY": "${input:wazap-read-only}",
"WAZAP_DATA_DIR": "${input:wazap-data-dir}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs