Skip to content
VS Code

mcp server for VS Code

io.github.wazionapps/mcp-server

244 WhatsApp Business AI tools for messaging, automation, marketing, CRM and Shopify

client:VS Code transport:stdio runtime:npm

Install mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "wazion-api-key",
      "description": "WAZION_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "wazion-mcp-server"
      ],
      "env": {
        "WAZION_API_KEY": "${input:wazion-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

mcp server in other clients