MCP.so
登录

Cline Notification Server

@MobileVibe

关于 Cline Notification Server

MCP server to send notifications via Telegram

基本信息

分类

沟通协作

运行时

node

传输方式

stdio

发布者

MobileVibe

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

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

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

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.

评论

沟通协作 分类下的更多 MCP 服务器