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.

コメント

「コミュニケーション」の他のコンテンツ