Skip to content
VS Code

telegram notify mcp for VS Code

io.github.parthjadhav/telegram-notify-mcp

Send Telegram notifications from AI agents — text, photos, and documents.

client:VS Code transport:stdio runtime:npm

Install telegram notify mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "telegram-bot-token",
      "description": "TELEGRAM_BOT_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "telegram-notify-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@parthj/telegram-notify-mcp"
      ],
      "env": {
        "TELEGRAM_BOT_TOKEN": "${input:telegram-bot-token}"
      }
    }
  }
}

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

telegram notify mcp in other clients