Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Tg

FreeNot checked

MCP server that exposes a Telegram user account over HTTP, enabling message sending, dialog listing, history retrieval, and message search via tools like send_m

GitHubEmbed

About

MCP server that exposes a Telegram user account over HTTP, enabling message sending, dialog listing, history retrieval, and message search via tools like send_message and list_dialogs.

README

An MCP server that exposes a Telegram user account (not a bot) over a streamable HTTP endpoint, built with FastMCP and Telethon.

It's multi-account: anyone can register a login on the server and link their own Telegram account to it. Each account maps to exactly one linked Telegram account, and tools always act on the caller's own linked account — never someone else's.

Tools

Tool Description
get_me Info about the logged-in account
list_dialogs Recent dialogs (chats, groups, channels) with ids for the other tools
get_chat_history Recent messages from a chat, newest first
send_message Send a text message (optionally as a reply)
search_messages Search messages in one chat or across the whole account

chat arguments accept a numeric id, an @username, a phone number, or "me" (Saved Messages).

Authentication

The MCP endpoint is protected by a self-hosted OAuth 2.1 authorization server (no third-party IdP). When an MCP client connects, it's redirected through a browser flow:

  1. Sign in or register with a username and password.
  2. Link Telegram (first time only): enter your phone number, the code Telegram sends you, and your two-factor password if you have one set. This is the same handshake the official Telegram apps use — nothing is stored until it succeeds.
  3. The client gets back an access/refresh token pair (JWT, 1h/30d) scoped to your account.

Registration is open: anyone who can reach the /login page can create an account, but every account is only ever able to act on the Telegram account they personally linked to it. If you don't want that, put the server behind something that gates access first (reverse proxy auth, a gateway like ContextForge, network-level restriction, etc.) — this server doesn't do invite codes itself.

Linked Telegram sessions are stored encrypted at rest (Fernet, key from MCP_SESSION_ENCRYPTION_KEY). A leaked database dump is not enough to hijack an account; a leaked database dump plus the encryption key is.

Requirements

Setup

uv sync
cp .env.example .env

Fill in .env:

  • TELEGRAM_API_ID / TELEGRAM_API_HASH — from my.telegram.org
  • MCP_BASE_URL — how clients actually reach this server (used as the OAuth issuer)
  • MCP_DB_URL — Postgres connection string
  • MCP_OAUTH_JWT_SECRETpython -c "import secrets; print(secrets.token_urlsafe(32))"
  • MCP_SESSION_ENCRYPTION_KEYpython -c "from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())"

Tables are created automatically on startup (no migration step).

Running

Local (requires a reachable Postgres, see MCP_DB_URL):

python -m tg_mcp
# -> http://127.0.0.1:8000/mcp

Docker Compose (bundles Postgres):

docker compose up --build

The image binds to 0.0.0.0:8000 inside the container; credentials are read from .env.

Configuration

All settings come from the environment (or .env).

Variable Default Description
TELEGRAM_API_ID API id from my.telegram.org
TELEGRAM_API_HASH API hash from my.telegram.org
MCP_HOST 127.0.0.1 HTTP bind host
MCP_PORT 8000 HTTP port
MCP_PATH /mcp HTTP endpoint path
MCP_BASE_URL http://127.0.0.1:8000 Externally reachable base URL (OAuth issuer/audience, login links)
MCP_DB_URL postgresql+asyncpg://tgmcp:tgmcp@localhost/tgmcp Async SQLAlchemy URL for Postgres
MCP_DB_ECHO false Log SQL statements
MCP_OAUTH_JWT_SECRET (insecure default) Signs OAuth access/refresh tokens — change this
MCP_SESSION_ENCRYPTION_KEY Fernet key encrypting stored Telegram sessions

Connecting an MCP client

A ready-to-use config is in .mcp.json:

{
  "mcpServers": {
    "tg-mcp": {
      "type": "http",
      "url": "http://127.0.0.1:8000/mcp"
    }
  }
}

Clients that support the MCP OAuth flow will open a browser to /login automatically on first connection.

Project layout

tg_mcp/
├── server.py               # FastMCP app, lifespan, mounts the tool sub-servers
├── oauth.py                 # OAuth 2.1 authorization server: login/register + Telegram linking
├── telegram_login.py        # phone/code/2FA handshake used by the linking flow
├── client.py                 # per-account Telethon client cache + FastMCP dependency
├── auth.py                   # password hashing, session encryption, caller resolution
├── config.py                  # pydantic-settings (TELEGRAM_* and MCP_*)
├── db.py                      # async engine/session, schema creation
├── models.py                  # Pydantic result models returned by tools
├── orm/                       # SQLAlchemy models: User, OAuthClient, RevokedToken
├── dao/                       # data-access objects
├── utils/                     # OAuth protocol helpers
└── tools/                     # one FastMCP sub-server per tool
    ├── get_me.py
    ├── list_dialogs.py
    ├── get_chat_history.py
    ├── send_message.py
    └── search_messages.py

The connected Telethon client for the calling account is provided to tools through a FastMCP dependency (TelegramClientDep), so each tool just declares client: TelegramClient = TelegramClientDep.

Development

ruff check .
ruff format --check .

CI (GitHub Actions) runs ruff and, on main/tags, builds and pushes a multi-arch image to GHCR.

from github.com/MyrikLD/tg-mcp

Installing Tg

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/MyrikLD/tg-mcp

FAQ

Is Tg MCP free?

Yes, Tg MCP is free — one-click install via Unyly at no cost.

Does Tg need an API key?

No, Tg runs without API keys or environment variables.

Is Tg hosted or self-hosted?

A hosted option is available: Unyly runs the server in the cloud, no local setup required.

How do I install Tg in Claude Desktop, Claude Code or Cursor?

Open Tg on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Tg with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All communication MCPs