MCP Telegram Cloud
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., "@MCP Telegram Cloudshow me my unread messages"
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.
MCP Telegram Cloud
Open source MCP server that connects a Telegram account to AI assistants (Claude.ai, ChatGPT) over OAuth + QR login. Hosted free at mcp-telegram.com, or self-host on your own infrastructure.
This is the cloud / multi-user flavour. For the single-user CLI
(stdio transport, full read+write, all MTProto tools), use the upstream
@overpod/mcp-telegram.
What it does
Exposes a Telegram account to an MCP-aware client (Claude.ai, ChatGPT Apps, custom MCP hosts) over Streamable HTTP.
Read-only and safe-state-change tools only — no
send-message, nodelete-message, no admin actions. The hosted service trades off capability for a smaller blast radius.OAuth 2.0 with dynamic client registration and PKCE (RFC 8414 + 7591 + 7636). QR login is embedded in the OAuth authorize page — connect once, reconnect via refresh token for 30 days.
Related MCP server: tgbot-mcp
Quick start (hosted)
Open Claude.ai → Settings → Connectors → Add custom connector.
Server URL:
https://mcp-telegram.com/mcp.Click Connect. You will be redirected to scan a QR code with Telegram (Settings → Devices → Link Desktop Device).
Done. Ask Claude to read your unread messages, search chats, etc.
ChatGPT Apps Directory submission is in review. Until then, add
https://mcp-telegram.com/mcp manually as a custom MCP server.
Quick start (self-hosted)
git clone https://github.com/mcp-telegram/mcp-telegram-cloud.git
cd mcp-telegram-cloud
cp .env.example .env
# fill in TELEGRAM_API_ID + TELEGRAM_API_HASH (from https://my.telegram.org/apps)
# and ISSUER (your public HTTPS URL). ADMIN_TOKEN is optional but
# recommended — without it admin-only operations on /api/* (stats,
# operator-side session import) return 401.
docker compose -f docker-compose.example.yml up -d --buildThe example compose file binds to 127.0.0.1:3000 and does not include
TLS termination. OAuth clients require HTTPS, so put a reverse proxy
in front (Traefik, nginx + certbot, Caddy, managed LB). See
docs/self-hosting.md for the threat model,
hardening checklist, and incident response.
⚠️ The session database stores live MTProto session strings in plaintext. Read
docs/self-hosting.md§Threat model before running this in production.
MCP tools exposed
Cloud whitelists a subset of the upstream tools. All are annotated
readOnlyHint: true or are safe state-changes (mark-as-read, mute).
Read & search
telegram-status— connection statustelegram-list-chats— dialogs with filteringtelegram-read-messages— paginated message readtelegram-search-chats— search chats by name / description / sizetelegram-search-global— full-text search across public chats and channelstelegram-search-messages— full-text search inside a chattelegram-get-unread— unread chats with per-topic breakdown for forums
Chat & member info
telegram-get-chat-info— chat details and metadatatelegram-get-chat-members— group/channel memberstelegram-get-chat-folders— user's chat folderstelegram-list-topics— forum topics with unread countstelegram-read-topic-messages— read messages from a forum topictelegram-get-invite-links— chat invite linkstelegram-get-reactions— message reactions with user details
Profiles & contacts
telegram-get-profile— detailed user profile (bio, photo, last seen, premium)telegram-get-profile-photo— download profile phototelegram-get-contacts— contacts listtelegram-get-contact-requests— incoming non-contact messages
Stickers
telegram-get-sticker-settelegram-search-sticker-setstelegram-get-installed-stickerstelegram-get-recent-stickers
Media
telegram-download-media— download photos and documents
Safe state changes
telegram-mark-as-read— mark a chat as readtelegram-mute-chat— mute notifications
Account info
telegram-get-sessions— list active Telegram sessions
For the full upstream tool catalogue (including send-message,
forward-message, group admin, profile write, etc.), use the CLI
@overpod/mcp-telegram.
Architecture
Transport: Streamable HTTP (
/mcp)Auth: OAuth 2.0 (RFC 8414 + 7591 + 7636/PKCE S256)
Login: QR via MTProto, embedded in OAuth authorize page
Storage: SQLite (sessions, OAuth tokens, usage log)
Telegram client:
@overpod/mcp-telegramvia Master/Client IPC — each user runs in an isolated workerPages: Hono JSX (landing, OAuth authorize, privacy, terms)
Observability: structured logs to OTLP HTTP (SigNoz, Grafana Cloud, etc.), or stderr if
SIGNOZ_ENDPOINTis emptyDeploy: Docker. Production runs Docker Swarm + Traefik.
See docs/architecture.md for the component
map, request lifecycles, and storage layout.
Configuration
All runtime config is environment variables. Required:
TELEGRAM_API_ID, TELEGRAM_API_HASH, ISSUER. ADMIN_TOKEN is
recommended — admin-only operations on /api/* (stats, operator-side
session import) return 401 without it.
Full reference with required-vs-optional flags and change-impact
warnings: docs/configuration.md.
Development
pnpm install
cp .env.example .env
pnpm dev # tsx watch
pnpm test # unit tests (node:test)
pnpm typecheck # tsc --noEmit
pnpm lint # biome
pnpm build # tsc → dist/The pre-commit hook (husky + biome check --staged) runs Biome on
staged files and gitleaks protect --staged if Gitleaks is installed locally
(brew install gitleaks). The same scan plus TruffleHog runs in CI on
every PR.
Contributing
PRs welcome. Please read CONTRIBUTING.md first —
it covers the cloud-vs-upstream scope split, dev setup, and the
"won't merge" list. By contributing you agree to the
Code of Conduct. See ROADMAP.md
for what's planned, what's deferred, and what's explicitly out of scope.
Tool-level features (new telegram-* MCP tools, MTProto coverage)
belong in the upstream
mcp-telegram repo.
This repo handles hosting concerns: OAuth, multi-user session storage,
rate limiting, landing pages, ops.
Maintenance
Maintained by one person in spare time. Expected response time on issues and PRs: ~2-3 days. No SLA, no paid support tier — but the hosted service is best-effort kept up.
Status updates land via the
@mcp_telegram_cloud_bot Telegram
bot (subscribe via /start).
Security
Vulnerability disclosure: see SECURITY.md. Please
do not open public issues for security problems.
License
MIT © overpod, 2025-2026.
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.
Related MCP Servers
- Alicense-qualityDmaintenanceMCP server that connects AI assistants to your real Telegram account via User API (MTProto). Features default-deny ACL with per-chat permissions, message search, file sending, forwarding, media downloads, and rate limiting.2MIT
- AlicenseAqualityDmaintenanceA trusted, open-source MCP server for Telegram that enables LLMs to send messages, structured notifications with buttons, and wait for user replies using only bot token authentication.4MIT
- Alicense-qualityAmaintenanceAn MCP server that gives AI assistants read-only access to your personal Telegram account via MTProto, enforcing a whitelist of allowed chats and never marking messages as read.MIT
- Alicense-qualityDmaintenanceAn MCP server for sending and receiving Telegram messages via a bot, enabling AI assistants to interact directly through Telegram by sending messages, reading recent messages, and sending photos.32MIT
Related MCP Connectors
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
An MCP server that gives your AI access to the source code and docs of all public github repos
Telegram bridge for your MCP-compatible agent. Bidirectional, no LLM in our stack.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/kaka-sangi/mcp-telegram-cloud-deploy'
If you have feedback or need assistance with the MCP directory API, please join our Discord server