MCP.so
Sign In

Cline Notification Server

@MobileVibe

About Cline Notification Server

MCP server to send notifications via Telegram

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "notification": {
      "command": "npx",
      "args": [
        "cline-notification-server"
      ],
      "env": {
        "TELEGRAM_BOT_TOKEN": "",
        "TELEGRAM_CHAT_ID": ""
      }
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is Cline Notification Server?

It is an MCP server for Cline that enables sending notifications via Telegram and waiting for user responses. Cline uses it to ask questions by sending a Telegram message and pausing execution until the user replies.

How to use Cline Notification Server?

Install via npm, create a Telegram bot, obtain your chat ID, then configure Cline with the bot token and chat ID as environment variables. Cline will then use the server's "send_notification" tool to ask questions and wait for your response.

Key features of Cline Notification Server

  • Send notifications with low, medium, or high urgency levels.
  • Automatically waits for user responses (default 30-second timeout).
  • Stops Cline when the user is unavailable to prevent unwanted actions.
  • Messages formatted with emoji prefixes based on urgency.
  • Configurable timeout for user response waiting.
  • Integrates with Cline’s MCP tool system.

Use cases of Cline Notification Server

  • Asking for user approval before deploying to production.
  • Requesting user input for high-stakes decisions during code generation.
  • Pausing Cline operations until the user provides clarification.
  • Notifying the user about important events with urgency levels.

FAQ from Cline Notification Server

How do I set up the Telegram bot?

Create a bot via BotFather on Telegram, save the token, start a chat with the bot, then retrieve your chat ID using the getUpdates API.

What environment variables are required?

You need TELEGRAM_BOT_TOKEN (your bot token) and TELEGRAM_CHAT_ID (your Telegram chat ID where messages will be sent).

What happens if I don't respond within the timeout?

If you don't respond within 30 seconds, Cline stops and waits for you to restart it.

How does Cline use the notification tool?

Cline can call the use_mcp_tool function with server_name "notification", tool_name "send_notification", and arguments including message, project, and urgency.

Are there any dependencies or runtime requirements?

The server requires Node.js and npm to install, and a Telegram bot token and chat ID for operation.

Frequently asked questions

How do I set up the Telegram bot?

Create a bot via BotFather on Telegram, save the token, start a chat with the bot, then retrieve your chat ID using the getUpdates API.

What environment variables are required?

You need TELEGRAM_BOT_TOKEN (your bot token) and TELEGRAM_CHAT_ID (your Telegram chat ID where messages will be sent).

What happens if I don't respond within the timeout?

If you don't respond within 30 seconds, Cline stops and waits for you to restart it.

How does Cline use the notification tool?

Cline can call the use_mcp_tool function with server_name "notification", tool_name "send_notification", and arguments including message, project, and urgency.

Are there any dependencies or runtime requirements?

The server requires Node.js and npm to install, and a Telegram bot token and chat ID for operation.

Comments

More Communication MCP servers