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 "Install 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: agent-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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hyper-tew/telegram-mcp-notify'
If you have feedback or need assistance with the MCP directory API, please join our Discord server