telegram-mcp
Minimal MCP server that enables sending Telegram messages via a bot, with HTML formatting and shared-secret authentication.
README
Telegram MCP Server for Claude Cowork
Minimal MCP server with a single tool: send_telegram_message.
No third-party intermediaries (Composio, etc.) — just your code, your bot, your server.
Step 1. Create a Bot in Telegram
- Open a chat with @BotFather in Telegram.
- Send
/newbot. - Provide a name (anything) and a username ending in
bot(for example, ``reminders_my_bot`). - BotFather will send a token like
123456789:AAHfiqksKZ8...— save it, this is yourTELEGRAM_BOT_TOKEN.
Step 2. Find Your chat_id
- Find your bot in Telegram by its username and send it any message (for example, "hello").
- Open in your browser (substitute your token):
https://api.telegram.org/bot<TELEGRAM_BOT_TOKEN>/getUpdates - In the response, find
"chat":{"id": NUMBER, ...}— this is yourTELEGRAM_CHAT_ID.
Step 3. Create a Secret
Set any long random string — this is your MCP_SHARED_SECRET.
It secures the server: without it, no one (even if they find the URL) can send messages through your bot. You can generate one with:
openssl rand -hex 32
Step 4. Deploy the Server
The easiest options are Render.com (free tier available) or Railway.app. General steps for any of these platforms:
- Push this directory (
telegram-mcp/) to a GitHub repository (can be private). - On Render: New → Web Service → connect the repository.
- Build command:
npm install - Start command:
npm start
- Build command:
- In the Environment section, add three environment variables:
TELEGRAM_BOT_TOKEN= token from Step 1TELEGRAM_CHAT_ID= id from Step 2MCP_SHARED_SECRET= secret from Step 3
- Deploy. Render will give you a public URL like
https://telegram-mcp-xxxx.onrender.com. - Your MCP endpoint is
https://telegram-mcp-xxxx.onrender.com/mcp.
Note: Render's free tier "sleeps" after a period of inactivity and takes ~30 seconds to wake up on the first request. For a "once a week" task, this is not an issue.
Step 5. Connect to Claude
Customize→Connectors→+→Add custom connector.- Name:
Telegram Notify(or whatever you like). - Remote MCP server URL: put the secret straight into the path —
https://your-domain/mcp/<your MCP_SHARED_SECRET> - Leave the OAuth Client ID / Secret fields under Advanced settings empty — this server doesn't use OAuth.
- Click Add.
The server also accepts the secret as a header (Authorization: Bearer <MCP_SHARED_SECRET>
against https://your-domain/mcp), which is the cleaner option if your client can send
custom request headers. The connector dialog currently offers only OAuth fields, so the
URL-path form above is the one that works there.
The secret in the URL is as sensitive as a password: don't paste that URL into screenshots, issues, or chats. If it leaks, change
MCP_SHARED_SECRETin Render's Environment section and update the connector URL.
Step 6. Use in a Scheduled Task
In Cowork:
/schedule
and describe the task, for example:
Every Friday at 9:00 AM check [event source] and send me a short digest via send_telegram_message.
Before scheduling, test it manually with a one-off task to make sure the message actually arrives.
Topics (routing each automation to its own tab)
Each automation can post into its own topic. Two places can host those topics, and
the server code is identical for both — only TELEGRAM_CHAT_ID differs.
Option A — private chat with the bot ("Threaded Mode"). Added in Bot API 9.3
(2025-12-31): enable it via @BotFather → your bot → Threaded Mode, then create the
topics in the chat itself. TELEGRAM_CHAT_ID stays your personal chat id.
Between the Bot API 10.0 rollout (2026-05-08) and some point before 2026-08-07, sending with
message_thread_idto a private chat returned400: message thread not found— see tdlib/telegram-bot-api#847. Verified working again on 2026-08-07. If that error comes back, option B is unaffected by it.
Option B — forum supergroup. Unaffected by the above.
- Create a group, add your bot, promote it to admin.
- Group settings → Topics → on. Create one topic per automation.
- Set
TELEGRAM_CHAT_IDto the group id (looks like-1001234567890).
Getting the ids (either option): post a message in each topic, then open
https://api.telegram.org/bot<TOKEN>/getUpdates and read "chat":{"id": ...} and
"message_thread_id". In Telegram Desktop/Web you can instead copy a message link
from the topic — t.me/c/<chat>/<thread>/<message>.
Then add the map on Render:
TELEGRAM_TOPICS = {"events":2,"news":8,"jobs":14}
The tool exposes a topic parameter restricted to those names, so each scheduled
task states where its output belongs. Omitting it posts to General.
Invalid JSON or a non-integer id fails at startup rather than silently misrouting messages days later.
Message Formatting
Messages are parsed as Telegram HTML. The supported tags are:
<b>bold</b> <i>italic</i> <u>underline</u> <s>strikethrough</s>
<code>inline code</code> <pre>code block</pre>
<a href="https://example.com">link</a>
<blockquote>quote</blockquote> <tg-spoiler>hidden</tg-spoiler>
That's the whole list. There is no <br>, no headings, no <ul>/<li>, no tables —
use real newlines for line breaks and emoji or • for bullets. Literal <, >, &
in prose must be escaped as < > &.
HTML is used instead of MarkdownV2 because MarkdownV2 requires escaping over a dozen
characters (., -, !, (, ), …) and a single missed one rejects the message.
If the markup is invalid anyway, the server retries once without parsing so the text
still arrives — unformatted, with a note in the tool result. Pass plain: true to skip
parsing deliberately (useful when the body contains raw angle brackets).
Link previews are disabled, so a message with a URL stays a one-liner.
Local Launch (for testing)
npm install
TELEGRAM_BOT_TOKEN=xxx TELEGRAM_CHAT_ID=xxx MCP_SHARED_SECRET=xxx npm start
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。