An unofficial, feature-rich command-line client, MCP server, and webhook daemon for Telegram, built on Telethon
Project description
tlgrm
An unofficial, feature-rich command-line client, MCP server, and webhook daemon for Telegram, built on Telethon.
Drive your personal Telegram account from the terminal — or from an AI assistant — and bridge incoming messages to an HTTP webhook in real time.
Unofficial app notice: tlgrm is an independent, unofficial client built on the Telegram API (via Telethon). It is not affiliated with, endorsed by, or sponsored by Telegram.
Features
- Personal account — acts as you (MTProto user account, not a bot): read history, list members, message anyone you can.
- Multi-account — log into several Telegram accounts, switch with
-a/--account, and listen to all of them at once (like the mobile app). - 30+ commands — send/reply/edit/delete, history & global search, reactions, forwarding, pin & mute, group management, scheduling, polls.
- Background server — an optional persistent process owns one hot connection per account; the CLI, MCP server, and webhook listener all route through it, so they run together with no
database is lockedconflict (and commands are near-instant). - Real-time webhooks — forward incoming messages to an HTTP endpoint, per-account, optionally as a
systemdservice. - Live filtering & permissions — per-account allow/block lists for both listening (
filter listen) and writing (filter write), plus daily listening windows — all reconfigurable live. - Scheduled messages —
schedule send --at/--in,list,cancel(Telegram-native, fires even when offline). - MCP server —
tlgrm-mcplets AI assistants drive Telegram (read-only by default), as a thin bridge to the server. - Speech-to-text — auto-transcribe incoming voice notes (multilingual, GPU-aware, live-configurable via
tlgrm stt), or transcribe any file withtlgrm transcribe. - Clean JSON output — commands print JSON to stdout (logs go to stderr), so it pipes straight into
jqand scripts.
→ See the full feature list — each one tagged by whether it needs the background server.
Quick start
# 1. Get your API credentials from my.telegram.org → API development tools
export TG_API_ID=1234567
export TG_API_HASH=your_api_hash_here
# 2. Install — uv recommended (https://docs.astral.sh/uv/)
uv tool install "tlgrm[all]" # everything (CLI + MCP + speech-to-text)
# uv tool install tlgrm # CLI only
# uv tool install "tlgrm[mcp]" # CLI + MCP server
# 3. Log in once
tlgrm login
# 4. Go
tlgrm chats --limit 10
tlgrm send --target @username --text "Hello!"
tlgrm chats | jq '.[].name' # stdout is clean JSON; logs go to stderr
Prefer pip? Same package and extras: pip install tlgrm (or "tlgrm[mcp]", "tlgrm[stt]", "tlgrm[all]").
Telegram API credentials
tlgrm does not ship with API credentials — you must supply your own:
- Go to my.telegram.org → API development tools.
- Create an application (Platform: Desktop). The title must not contain the word "Telegram".
- Copy the
api_id(a number) andapi_hash(a hex string). - Export them (add to your shell profile to persist):
export TG_API_ID=1234567
export TG_API_HASH=your_api_hash_here
See docs/03-configuration.md for all configuration options.
Commands (29)
Every command prints clean JSON to stdout — logs and progress go to stderr, so piping into jq works reliably.
Account & read
| Command | Description |
|---|---|
tlgrm login |
Authenticate your Telegram account (interactive, one-time) |
tlgrm whoami |
Show the logged-in account |
tlgrm chats [--limit N] |
List recent chats/dialogs |
tlgrm history --target T [--limit N] [--offset-id ID] |
Fetch message history |
tlgrm search --query Q [--target T] [--limit N] |
Search messages globally or in a chat |
tlgrm members --target T |
List members of a group or channel |
tlgrm user-info --target T |
Show profile info for a user |
tlgrm chat-info --target T |
Show info about a chat/channel |
tlgrm download --target T --message-id ID [--output PATH] |
Download media from a message |
Write
| Command | Description |
|---|---|
tlgrm send --target T (--text … | --file …) [--caption …] [--voice] [--reply-to ID] [--silent] |
Send a message, file, media, or voice note |
tlgrm reply --target T --message-id ID (--text … | --file …) [--caption …] [--voice] [--silent] |
Reply to a specific message |
tlgrm edit --target T --message-id ID --text … |
Edit a sent message |
tlgrm read --target T [--max-id ID] |
Mark a chat as read |
tlgrm forward --from A --to B --message-ids ID … |
Forward messages between chats |
tlgrm react --target T --message-id ID --emoji E [--big] |
React to a message |
tlgrm pin --target T --message-id ID [--notify] |
Pin a message |
tlgrm unpin --target T [--message-id ID] |
Unpin a message (or all) |
tlgrm mute --target T [--duration SECONDS] |
Mute a chat |
tlgrm unmute --target T |
Unmute a chat |
tlgrm saved (--text … | --file …) [--caption …] [--voice] |
Send to Saved Messages |
Groups, scheduling & advanced
| Command | Description |
|---|---|
tlgrm create-group --title TITLE [--members …] [--channel] |
Create a group or channel |
tlgrm add-members --target T --members … |
Add members to a group/channel |
tlgrm remove-members --target T --members … |
Remove members from a group/channel |
tlgrm leave --target T |
Leave a group or channel |
tlgrm schedule --target T --text TEXT --at (SECONDS|ISO8601) |
Schedule a text message |
tlgrm poll --target T --question Q --option A --option B … [--quiz --correct N] |
Send a poll or quiz |
tlgrm transcribe --file PATH [--backend …] [--model …] |
Transcribe audio (no login required) |
Webhook daemon
| Command | Description |
|---|---|
tlgrm listen [--webhook-url URL] [--webhook-header "N: V"] [--verbose] |
Listen for incoming messages (foreground) |
tlgrm daemon install|uninstall|status|logs |
Manage the background systemd daemon |
Full reference with all flags, output shapes, and examples: docs/02-commands.md.
MCP server
tlgrm ships a stdio MCP server (tlgrm-mcp). It is read-only by default; add --allow-write for write tools and --allow-write --allow-destructive for delete/leave/remove.
{
"mcpServers": {
"tlgrm": {
"command": "uvx",
"args": ["--from", "tlgrm[mcp]", "tlgrm-mcp", "--allow-write"],
"env": { "TG_API_ID": "...", "TG_API_HASH": "..." }
}
}
}
The MCP server is a thin bridge to the background server: every tool call routes through the one owned connection (which enforces the permission tier and the write guard), and a server is auto-spawned if none is running. So the MCP server, the webhook daemon, and your CLI all run at once with no database is locked conflict — no --session juggling. Add --account NAME to act as a specific account (otherwise the server's default account is used). Requires a prior tlgrm login.
Full setup, permission tiers, and tool list: MCP guide.
Speech-to-text (optional)
Install the stt extra to auto-transcribe incoming voice notes in the webhook daemon, or to run tlgrm transcribe standalone (no login needed).
uv tool install "tlgrm[stt]" # faster-whisper (default, recommended)
uv tool install "tlgrm[stt-whisper]" # original openai-whisper
uv tool install "tlgrm[stt-all]" # all local backends
# (or pip install "tlgrm[stt]", etc.)
Cloud backends (openai, groq, deepgram, elevenlabs, google) need no extra package — just set the API key:
export OPENAI_API_KEY=sk-... # auto-selects openai backend
Model tip: the default model is tiny (fast, lower accuracy). For good Arabic / multilingual accuracy, use a larger model:
export TG_STT_MODEL=large-v3-turbo # recommended for Arabic
GPU: faster-whisper auto-detects NVIDIA GPUs (TG_STT_DEVICE=auto). CUDA 12 runtime required: pip install nvidia-cublas-cu12 nvidia-cudnn-cu12. Full backend reference: docs/03-configuration.md.
Security
- Your session file (
~/.tlgrm/tg_session.session) grants full account access — keep it private (git-ignored by default). - Enable Two-Step Verification on your Telegram account.
- The systemd unit file is written owner-only (
0600).
Troubleshooting
| Symptom | Fix |
|---|---|
Telegram API credentials are not configured |
Export TG_API_ID and TG_API_HASH (see above) |
Not authorized. Run 'tlgrm login' first. |
Run tlgrm login |
| Transcription never appears | Install the stt extra and FFmpeg |
systemctl not found |
The daemon needs systemd; use tlgrm listen directly |
| Cannot create an app at my.telegram.org | Brand-new accounts are sometimes blocked; wait and retry |
| MCP tool not available | Check the permission tier — write/destructive tools need explicit flags |
Documentation
| Guide | What it covers |
|---|---|
| 00 · Getting Started | Install, credentials, login, first message |
| 01 · Features | Every feature in plain language, tagged by server need |
| 02 · Command Reference | Every command, flag, output shape |
| 03 · Configuration | Accounts, server, listening/filters/STT, env vars |
| 04 · MCP server | Driving Telegram from an AI assistant |
| 05 · Webhook & Daemon Guide | Webhooks, systemd, payload schema |
Contributing & License
Contributions welcome — see CONTRIBUTING.md. Released under the MIT License © 2026 Ali Alrabeei. tlgrm is unofficial and not affiliated with, endorsed by, or sponsored by Telegram.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tlgrm-0.3.0.tar.gz.
File metadata
- Download URL: tlgrm-0.3.0.tar.gz
- Upload date:
- Size: 576.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b13b7a558b9235f5610bfd6d80a38dc7327124105b4f19aad86290ec175d46b
|
|
| MD5 |
a72e827205654595fed43f017e8b48f0
|
|
| BLAKE2b-256 |
39bcf5457eaae4a4e52fbb5e8617ae4cfac1993f8d92a98b6645aac5fa94a267
|
File details
Details for the file tlgrm-0.3.0-py3-none-any.whl.
File metadata
- Download URL: tlgrm-0.3.0-py3-none-any.whl
- Upload date:
- Size: 55.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57dc168dd72d4e982b07e322acb1d1a45bebbaeb392c2ac7cd045f7701b8865c
|
|
| MD5 |
c2354180bc5b5dbefd4ecb99c7755529
|
|
| BLAKE2b-256 |
b3a8639da96735d874ea0cbe61bc989e3574cc46e781ca56d5c757cdcc506656
|