Skip to content
VS Code

dynamic telegram bot api mcp for VS Code

io.github.patricktobias86/dynamic-telegram-bot-api-mcp

A dynamic, self-refreshing MCP gateway for the complete Telegram Bot API

client:VS Code transport:stdio runtime:npm

Install dynamic telegram bot api mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "telegram-bot-token",
      "description": "TELEGRAM_BOT_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "dynamic-telegram-bot-api-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "dynamic-telegram-bot-api-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

dynamic telegram bot api mcp in other clients