mcp-telegram

mcp-telegram

An MCP server that lets an LLM send messages, photos, and documents to Telegram through a bot. Provides four tools: get_me, send_message, send_photo, and send_document.

Category
Visit Server

README

mcp-telegram

An MCP server that lets an LLM send messages, photos and documents to Telegram through a bot.

Point any MCP-capable client (Claude Desktop, Claude Code, or your own agent) at this server and the model gains four tools: get_me, send_message, send_photo and send_document. The model decides what to say; the server handles how it reaches Telegram.

Why the Bot API

This server talks to the Telegram Bot API. That means you create a bot, the bot sends messages, and users receive them.

  • No phone-number login, no api_id/api_hash, no session files.
  • The bot can only message chats it already shares with a user (the user must start the bot first) or channels/groups it belongs to.

If you instead need to send messages as your own user account to arbitrary people, that requires the MTProto client API (Telethon/Pyrogram) and account authentication — a deliberately different, heavier tool that is out of scope here.

Architecture

Three small layers, each with one responsibility:

src/mcp_telegram/
├── config.py     # load & validate settings from the environment (fail-fast)
├── telegram.py   # thin async client over the Bot API (httpx, no heavy SDK)
├── server.py     # FastMCP server: tool definitions + shared client lifespan
└── __main__.py   # entry point (stdio transport)

The MCP layer never builds HTTP requests and the HTTP layer never knows about MCP, so each can be tested and changed on its own. A single httpx.AsyncClient is created once per server run via the FastMCP lifespan and reused across calls.

Requirements

  • Python 3.10+
  • A Telegram bot token from @BotFather

Setup

1. Create the bot and get a token

  1. Open @BotFather in Telegram and send /newbot.
  2. Follow the prompts and copy the token it gives you (looks like 123456789:AA...).

2. Find your chat id

The bot can only message a chat it knows. The simplest path:

  1. Send any message to your new bot in Telegram.
  2. Ask @userinfobot for your numeric id, or call:
    curl "https://api.telegram.org/bot<YOUR_TOKEN>/getUpdates"
    
    and read result[].message.chat.id from the JSON.

Set that value as TELEGRAM_DEFAULT_CHAT_ID so the model can send without specifying a chat every time.

3. Install

# with uv (recommended)
uv venv
uv pip install -e .

# or with pip
python -m venv .venv && source .venv/bin/activate
pip install -e .

4. Configure

Copy the example env file and fill it in:

cp .env.example .env
# edit .env: set TELEGRAM_BOT_TOKEN (and ideally TELEGRAM_DEFAULT_CHAT_ID)
Variable Required Default Description
TELEGRAM_BOT_TOKEN yes Token from @BotFather.
TELEGRAM_DEFAULT_CHAT_ID no Chat used when a tool call omits chat_id.
TELEGRAM_API_BASE no https://api.telegram.org Override the API host (e.g. a local Bot API server).
TELEGRAM_TIMEOUT no 30 Per-request timeout in seconds.

Running

The server speaks MCP over stdio, so you normally don't launch it by hand — your MCP client does. To sanity-check that it starts:

TELEGRAM_BOT_TOKEN=... mcp-telegram

It will wait for an MCP client on stdin. Press Ctrl+C to stop.

Connecting a client

Claude Desktop

Add this to your claude_desktop_config.json (~/Library/Application Support/Claude/ on macOS, %APPDATA%\Claude\ on Windows):

{
  "mcpServers": {
    "telegram": {
      "command": "mcp-telegram",
      "env": {
        "TELEGRAM_BOT_TOKEN": "123456789:AA...",
        "TELEGRAM_DEFAULT_CHAT_ID": "123456789"
      }
    }
  }
}

If mcp-telegram is not on your PATH, use the venv's absolute path or run it through uv:

{
  "mcpServers": {
    "telegram": {
      "command": "uv",
      "args": ["run", "--directory", "/absolute/path/to/mcp-telegram", "mcp-telegram"],
      "env": { "TELEGRAM_BOT_TOKEN": "123456789:AA..." }
    }
  }
}

Claude Code

claude mcp add telegram \
  --env TELEGRAM_BOT_TOKEN=123456789:AA... \
  --env TELEGRAM_DEFAULT_CHAT_ID=123456789 \
  -- mcp-telegram

Restart the client after editing its config, then ask the model something like "send me a Telegram message saying the build passed".

Tools

Tool What it does
get_me Return the bot's identity — use it to verify the token.
send_message Send a text message (optional Markdown/HTML formatting).
send_photo Send a photo by URL, local path, or Telegram file_id.
send_document Send a file by URL, local path, or Telegram file_id.

Every send tool accepts an optional chat_id; when omitted it falls back to TELEGRAM_DEFAULT_CHAT_ID. parse_mode is optional and defaults to plain text — only set "MarkdownV2", "HTML" or "Markdown" when you need formatting, and make sure the payload is escaped for that mode.

Development

uv pip install -e ".[dev]"
pytest

Tests mock the Telegram HTTP API with respx, so they run offline and never touch a real bot.

License

MIT — see LICENSE.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured