Skip to content
VS Code

JetAPI for VS Code

io.github.jetapi/jetapi-mcp-server

Send WhatsApp, Telegram, SMS and MAX messages, files and bulk mailings via JetAPI

client:VS Code transport:stdio runtime:npm

Install JetAPI in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "jetapi-token",
      "description": "JETAPI_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "jetapi-base-url",
      "description": "JETAPI_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "jetapi-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "jetapi-mcp-server"
      ],
      "env": {
        "JETAPI_TOKEN": "${input:jetapi-token}",
        "JETAPI_BASE_URL": "${input:jetapi-base-url}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

JetAPI in other clients