telegram-bot-testing-mcp
Enables AI agents to test Telegram bots and Mini Apps by driving the official Telegram Web client in a real browser, simulating user interactions like sending messages, pressing buttons, uploading files, and taking screenshots for visual verification.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@telegram-bot-testing-mcpRun regression on @my_bot: /start, press Buy, screenshot each step."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
telegram-bot-testing-mcp
Write test scenarios for your Telegram bot — Claude runs them like a human QA.
AI agents can already test any website through browser automation. This MCP server gives them the same power over Telegram bots and Mini Apps: it drives the official Telegram Web client (web.telegram.org) in a real browser. Your agent gets exactly the input a real user gets — the same rendered chat, the same keyboards, the same Mini App — so it can verify not just that the bot responds, but that nothing is broken visually: keyboards render in the right shape, edits land, media shows up, the Mini App actually opens.
Instead of clicking through your bot by hand after every deploy, you describe the scenario once and let the agent execute it — sending /commands, pressing the buttons, uploading files, comparing what it sees against what you expected, and attaching screenshots as evidence.
No MTProto libraries, no session-string hacks, no bot token on the user side. Telegram sees a normal, official web client.
Why not telethon / Bot API?
Bot API shows you the bot's side, not the user's. You can't see how your keyboard renders, whether the edit landed, or what a real user experiences.
MTProto userbot libraries (telethon, gramjs, pyrogram) are custom clients: a different code path from real users, and account-ban-prone.
This adapter is a real user session in the official client — what your agent sees is pixel-for-pixel what users see, structurally and visually.
Related MCP server: QA Agent Pro
Quickstart
# 1. Install (Python 3.11+; from GitHub until the PyPI release)
uv tool install git+https://github.com/0x216/telegram-bot-testing-mcp
# download the browser (playwright lives inside the tool's env, so go through uvx):
uvx --from git+https://github.com/0x216/telegram-bot-testing-mcp playwright install chromium
# 2. Log in once (opens a browser window — scan the QR with a dedicated account)
telegram-bot-testing-mcp login
# 3. Add to Claude Code
claude mcp add telegram -- telegram-bot-testing-mcpThen hand your agent a scenario instead of testing by hand:
Run a regression pass on @my_bot:
/start— the welcome message must show the pricing keyboard, 2 rows of 2.Press Buy — the bot must edit that message into a payment summary.
Send
PROMO2026— the reply must confirm the discount.Open the Mini App from the Catalog button and add the first item to cart.
Screenshot every step and flag anything that renders wrong.
The agent executes it step by step with the same input a human tester would have, and reports what passed, what failed, and how it looked.
Tools
Tool | Purpose |
| Mode, login state, profile location |
| One-time interactive login (QR window) |
| Headless login by phone number — the code arrives on the account's other devices |
| Record & send a real voice message through a fake microphone (WAV input) |
| Open chat by |
| Send text or /command; |
| Forward a message via the real forward picker |
| Attach & send photo/document (with caption) |
| Last N messages as structured JSON (text, buttons grid, media kind, ids) |
| Block until the bot replies — the core test primitive |
| Press an inline button by text or row/col |
| Press a reply-keyboard button |
| Wipe history (test isolation) |
| Screenshot chat / single message / window |
| Open a Mini App from a web-app button |
| List interactive elements inside the Mini App ( |
| Interact with Mini App elements by ref |
| Capture / close the Mini App |
All tools return typed errors with actionable hints (not_logged_in,
button_not_found + the buttons that are present, timeout + current chat
state, selector_broken when Telegram changes markup).
Configuration
Env var | Default | Meaning |
|
|
|
| off |
|
|
| Browser profile location |
|
| Multiply all network-bound timeouts (e.g. |
Security
The browser profile directory is your Telegram session — treat it like a password. Use a dedicated test account, not your personal one: any automation that can send messages from your account is worth isolating. The profile stays on your machine; nothing is sent anywhere except to Telegram itself.
Headless servers (CI boxes, VPS)
Everything is headless by default, including login:
telegram-bot-testing-mcp login --phone +42077xxxxxxx
# the confirmation code arrives in the Telegram app on the account's
# other devices (or via SMS) — type it into the terminal promptAgents can do the same via tg_login_phone → tg_login_code
(→ tg_login_password for 2FA accounts).
Alternatively, log in once on a desktop machine (login opens a QR window)
and move the profile — it is just a directory and transfers fine across OSes
(verified Windows → Linux):
tar -czf tg-profile.tgz -C ~/.telegram-user-mcp profile-prod
scp tg-profile.tgz server:
ssh server 'mkdir -p ~/.telegram-user-mcp && tar -xzf tg-profile.tgz -C ~/.telegram-user-mcp'Treat the archive like a password — it contains your session.
Testing against the Telegram test DC
Telegram runs a separate test environment, and TG_MCP_MODE=test targets it.
Reality check as of 2026:
Auto-created test accounts are disabled. The documented
99966XYYYYnumbers with deterministic codes no longer work (tdlib/td#3370 — "Test accounts are disabled currently"). Don't believe older tutorials.Register with a real phone number via the official iOS app: tap the Settings icon 10 times → Accounts → Login to another account → Test.
Log the adapter in:
TG_MCP_MODE=test telegram-bot-testing-mcp login— scan the QR with the test-mode iOS app.Create your bot inside the test DC: message
@BotFatherfrom the test account — it's a separate BotFather with separate tokens.Point your bot's code at the test Bot API route:
https://api.telegram.org/bot<token>/test/METHOD(the bot is a token, not a phone number — one test account can create the bot and act as the user).
For most workflows the default prod mode with a dedicated account is simpler.
Coverage map
The single source of truth for what this adapter can and cannot test. Statuses are earned, not promised:
✅ implemented and verified by a live e2e run against real Telegram
🟡 implemented, no dedicated e2e yet (should work; treat with care)
🔴 not implemented (PRs / issues welcome; priorities below)
⚪ impossible in the official Telegram Web client itself — a human web user can't do it either, so a web-based tester can't and shouldn't
Reading what the bot sends
Component | Status | Notes |
Text, emoji, line breaks | ✅ | emoji restored from |
Formatting entities (bold/links/code/spoilers) | 🟡 | extracted as plain text; markup structure not exposed |
Photo | ✅ |
|
Video | 🟡 |
|
GIF / animation | ✅ | detected as |
Video note (round) | 🟡 |
|
Voice | ✅ |
|
Audio file | 🟡 |
|
Document | 🟡 |
|
Sticker (static/animated/video) | 🟡 |
|
Album / media group | 🟡 | read as one message; items not split out |
Message edit by bot | ✅ | verified via re-read after callback |
Message deletion by bot | 🟡 | disappears from |
Location | ✅ |
|
Venue | ✅ |
|
Live location | 🟡 | detected as |
Contact | ✅ |
|
Poll / quiz | ✅ |
|
Dice / darts / slots | ⚪ | the web client renders them as plain animated stickers — indistinguishable |
Invoice (payments) | 🔴 | Pay button is enumerable; checkout flow unsupported |
Forward header ("Forwarded from") | ✅ |
|
Reply-to attribution | ✅ |
|
Sender attribution | 🟡 |
|
Reactions set by the bot | 🔴 | |
Link preview / web page card | 🔴 | text extracted, preview card not flagged |
Service messages | ✅ | flagged |
Buttons & keyboards
Component | Status | Notes |
Inline callback buttons (grid, click, edit-after-callback) | ✅ | |
Reply keyboard (show, click, toggle) | ✅ | |
| ✅ | see Mini Apps below |
URL buttons | 🟡 | enumerated with text; clicking (opens a new tab) undefined |
| 🔴 | enumerable as text only |
Keyboard remove / one-time / force_reply | 🟡 | not explicitly tracked |
Bot commands menu (/) and menu button | 🔴 |
Acting as the user
Action | Status | Notes |
Send text / commands / emoji | ✅ | delivery-verified (not just typed) |
Send photo / document (+caption) | ✅ |
|
Record & send voice | ✅ | fake microphone fed from WAV |
Press START on a new bot | ✅ | automatic |
Clear chat history (test isolation) | ✅ | |
Screenshots (chat / message / window) | ✅ | |
Send video note (webcam round) | 🔴 | possible via fake video device; not implemented |
Send sticker / GIF (pickers) | 🔴 | |
Create a poll | 🔴 | web client supports it; not implemented |
Forward a message | ✅ |
|
Reply to a specific message | ✅ |
|
Edit / delete own message | 🔴 | |
Set a reaction | 🔴 | |
Inline mode ( | 🔴 | biggest gap for inline bots |
| 🔴 | |
Block / restart bot, profile actions | 🔴 | |
Send location / live location | ⚪ | the official web client cannot |
Calls, secret chats | ⚪ | not available on web / not applicable to bots |
Stories | ⚪ | bots don't interact with stories |
Sessions & flows
Flow | Status | Notes |
QR login (desktop window) | ✅ | manual scan once |
Headless phone login (terminal / MCP tools) | ✅ | autonomous e2e: second session reads the code |
2FA password step | 🟡 | implemented; test account has no 2FA to verify against |
Profile transfer to servers | ✅ | verified Windows → Linux |
Mini App: open / snapshot / click / type / read state / screenshot / close | ✅ | |
Mini App main button / back button | 🟡 | selectors present, no e2e |
Payment checkout (test provider) | 🔴 | feasible on the test DC |
Groups / channels / topics | 🔴 | designed for 1:1 bot chats so far |
Roadmap order for the 🔴s: (1) inline mode; (2) payment checkout on the test DC; (3) sticker/GIF pickers; (4) groups/channels.
Note on message ids: they are the web client's DOM ids. All adapter tools
speak them consistently, but they can diverge from Bot API message_ids
(observed after a history clear) — never compare the two directly.
Limitations
One server instance per profile (Chromium locks the profile directory).
Telegram Web markup changes can break selectors — they live in one file (
selectors.py), and every breakage surfaces as a typedselector_brokenerror. PRs welcome.
Development
uv venv && uv pip install -e ".[dev]" && playwright install chromium
python -m pytest # unit tests (offline, fixture DOM)
python e2e/fixture_bot.py # BOT_TOKEN=... — the e2e fixture bot
python e2e/run_scenarios.py # BOT=@your_fixture_bot — full scenario runMIT license.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/0x216/telegram-bot-testing-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server