notification
Allows sending notifications with different urgency levels and receiving user responses via Telegram messages.
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., "@notificationask me if I should proceed with deployment to production"
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.
Cline Notification Server
An MCP server for Cline that enables sending notifications and receiving responses via Telegram. When Cline needs to ask a question, it will send you a Telegram message and wait for your response.
Features
Send notifications with different urgency levels (low, medium, high)
Automatically waits for user responses
Configurable timeout (defaults to 30 seconds)
Stops Cline when user is unavailable to prevent unwanted actions
Related MCP server: telegram-mcp
Installation
npm install cline-notification-serverSetup
1. Create a Telegram Bot
Message @BotFather on Telegram
Send
/newbotand follow the instructionsSave the bot token you receive (it looks like
123456789:ABCdefGHIjklMNOpqrsTUVwxyz)Start a chat with your new bot
Message
/startto your bot
2. Get Your Chat ID
Send a message to your bot
Open this URL in your browser (replace BOT_TOKEN with your token):
https://api.telegram.org/botBOT_TOKEN/getUpdatesLook for the
chatobject and note theidfield - this is your chat ID
3. Configure Cline
Add the server to your Cline configuration file:
For VSCode extension (cline_mcp_settings.json):
{
"mcpServers": {
"notification": {
"command": "npx",
"args": ["cline-notification-server"],
"env": {
"TELEGRAM_BOT_TOKEN": "your_bot_token",
"TELEGRAM_CHAT_ID": "your_chat_id"
}
}
}
}For Claude desktop app (claude_desktop_config.json):
{
"mcpServers": {
"notification": {
"command": "npx",
"args": ["cline-notification-server"],
"env": {
"TELEGRAM_BOT_TOKEN": "your_bot_token",
"TELEGRAM_CHAT_ID": "your_chat_id"
}
}
}
}How It Works
When Cline needs to ask you a question:
It sends a message via Telegram using your bot
Waits up to 30 seconds for your response
If you respond within 30 seconds, Cline continues with your answer
If you don't respond within 30 seconds, Cline stops and waits for you to restart it
Example Usage
When this server is configured, Cline can use it to ask you questions:
// Example of how Cline uses the notification tools
const response = await use_mcp_tool({
server_name: "notification",
tool_name: "send_notification",
arguments: {
message: "Should I proceed with deploying to production?",
project: "MyApp",
urgency: "high"
}
});Messages are formatted with:
🚨 Prefix for high urgency
⚠️ Prefix for medium urgency
No prefix for low urgency
Environment Variables
TELEGRAM_BOT_TOKEN: Your Telegram bot token from BotFatherTELEGRAM_CHAT_ID: Your Telegram chat ID where messages will be sent
Contributing
Feel free to open issues or submit pull requests if you have suggestions for improvements.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceEnables AI assistants to interact with users via Telegram to request decisions, approvals, or specific input through text and clickable buttons. This facilitates a human-in-the-loop workflow where the AI can pause for feedback or send status notifications during long-running tasks.3
- Alicense-qualityDmaintenanceEnables LLMs to send notifications and receive responses via Telegram.464MIT
- Flicense-qualityDmaintenanceSends Telegram alerts for Claude Code status updates, including notifications for task completion, user requests, and custom status updates with normal or urgent priority.1
- Flicense-qualityBmaintenanceIntegrates Kiro IDE with Telegram to send notifications and request interactive confirmations via inline keyboard buttons.
Related MCP Connectors
Multi-tenant Telegram gateway for AI agents — HTTP+stdio, 8 tools, MTProto User API
Telegram bridge for your MCP-compatible agent. Bidirectional, no LLM in our stack.
Let your AI agent notify you by email, Slack, Discord, or webhook. One tool: send_notification.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/MobileVibe/notification-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server