telegram-mcp-notify
Sends outbound notifications to Telegram via a bot, supporting message types like question, plan_ready, final, attention_needed, and error.
Click on "Deploy 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., "@telegram-mcp-notifyNotify me that the plan is ready"
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.
telegram-mcp-notify
Notify-only Telegram MCP server for AI coding agents (Cursor, Codex, Claude Code).
IMPORTANT DISCLAIMER (WIP / SELF-USE)
This repository is still in active development and currently intended for personal/self use and experimentation. APIs and behavior may change without notice. Use at your own risk.
Related MCP server: telegram-mcp
Breaking Changes in 0.2.0
Removed console script:
telegram-mcp-listenerRemoved reply/input internals (
inbox, listener lifecycle, pending prompts)Removed singleton lock behavior for server startup
Features
Outbound Telegram notifications for:
questionplan_readyfinalattention_needederror
Notify-only MCP surface:
send_telegram_notificationtelegram_notify_capabilities
Cross-platform runtime (Windows and POSIX)
Prerequisites
Python 3.11+
uv/uvx(recommended) orpipTelegram bot token (from @BotFather)
Telegram chat ID
Quick Start: Cursor
Create .cursor/mcp.json in your project root (or ~/.cursor/mcp.json globally):
{
"mcpServers": {
"telegram_notify": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/hyper-tew/telegram-mcp-notify",
"telegram-mcp-notify"
],
"env": {
"TELEGRAM_BOT_TOKEN": "123456:ABC-DEF...",
"TELEGRAM_CHAT_ID": "123456789"
}
}
}
}Restart Cursor after saving.
Quick Start: Codex
Add to ~/.codex/config.toml:
[mcp_servers.telegram_notify]
command = "uvx"
args = ["--from", "git+https://github.com/hyper-tew/telegram-mcp-notify", "telegram-mcp-notify"]
[mcp_servers.telegram_notify.env]
TELEGRAM_BOT_TOKEN = "123456:ABC-DEF..."
TELEGRAM_CHAT_ID = "123456789"Or via CLI:
codex mcp add telegram_notify \
--env TELEGRAM_BOT_TOKEN=123456:ABC-DEF... \
--env TELEGRAM_CHAT_ID=123456789 \
-- uvx --from "git+https://github.com/hyper-tew/telegram-mcp-notify" telegram-mcp-notifyAlternative: Pre-install with pip
# From GitHub
pip install git+https://github.com/hyper-tew/telegram-mcp-notify.git
# From local clone
pip install ./telegram-mcp-notify
# Development
pip install -e "./telegram-mcp-notify[dev]"Then use Python module mode in MCP config:
[mcp_servers.telegram_notify]
command = "python"
args = ["-m", "telegram_mcp_notify.server"]
[mcp_servers.telegram_notify.env]
TELEGRAM_BOT_TOKEN = "123456:ABC-DEF..."
TELEGRAM_CHAT_ID = "123456789"Environment Variables
Required:
TELEGRAM_BOT_TOKENTELEGRAM_CHAT_ID
Optional:
Variable | Default | Description |
| None | Message parse mode ( |
|
| Suppress outbound notifications |
|
| HTTP request timeout |
Available Tools
Tool | Description |
| Send a structured Telegram checkpoint notification |
| Return current server tool/capability surface |
Troubleshooting
Symptom | Cause | Fix |
No notifications received | Invalid token/chat ID | Verify |
Unexpected tools shown | Running old package version | Upgrade/restart MCP runtime |
| Executable not on PATH | Use |
|
| Install |
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Let your AI agent notify you by email, Slack, Discord, or webhook. One tool: send_notification.
Run a Telegram channel from your AI agent. Posts go out through your own bot, not your account.
Telegram bridge for your MCP-compatible agent. Bidirectional, no LLM in our stack.
Push notifications for AI agents - send instant iPhone notifications from any MCP client.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables Claude Code to send Telegram notifications when tasks complete, errors occur, or user intervention is needed. Runs serverless on Cloudflare Workers with support for formatted messages and flexible chat targeting.7 npm22MIT
- AlicenseNot gradedqualityDmaintenanceEnables LLMs to send notifications and receive responses via Telegram.29 npm4MIT
- AlicenseBqualityDmaintenanceEnables AI agents to send notifications and media (text, photos, documents, videos) via a Telegram bot.436 npm3Do What The F*ck You Want To Public
- FlicenseAqualityDmaintenanceSends Telegram alerts for Claude Code status updates, including notifications for task completion, user requests, and custom status updates with normal or urgent priority.21-