Skip to main content
Glama

MCP Notify Server

MseeP.ai セキュリティ評価バッジ PyPIバージョン

📢 MCP 通知サーバー

英語|中文

エージェントのタスクが完了すると、サウンド効果付きのデスクトップ通知を送信する MCP サーバー。

🥩 機能

  • エージェントタスクの完了後にシステムデスクトップ通知を送信する

  • サウンド ファイルが内蔵されており、アラート サウンドを再生してユーザーの注意を引きます。

  • クロスプラットフォームサポート(Windows、macOS、Linux)

  • 標準MCPプロトコルに基づいて、さまざまなLLMクライアントと統合します

⏬ インストール

UVパッケージマネージャーを使用してインストールする

git clone https://github.com/Cactusinhand/mcp_server_notify.git cd mcp_server_notify uv venv source .venv/Scripts/activate uv pip install mcp-server-notify # or pip install mcp-server-notify

インストール後、モジュールを直接呼び出して、インストールが成功したかどうかを確認します。

python -m mcp_server_notify

このモジュールは--debugまたは--fileオプションを受け入れ、次のように使用できます。

python -m mcp_server_notify --debug python -m mcp_server_notify --debug --log-file=path/to/logfile.log

⚠️❕ 特別な要件

** デスクトップ通知の配信にはApprise APIを使用しているため、デスクトップにいくつかの特別な要件をインストールする必要があります**

ウィンドウズ

# windows:// minimum requirements pip install pywin32

macOS

# Make sure terminal-notifier is installed into your system brew install terminal-notifier

📚 使用方法

Claude Desktop での使用:

設定ファイルclaude_desktop_config.jsonを見つけます。

{ "mcpServers": { "NotificationServer": { "command": "uv", "args": [ "--directory", "path/to/your/mcp_server_notify project", "run", "mcp-server-notify", ] } } }

グローバルにインストールされている場合は、python コマンドも使用できます。

{ "mcpServers": { "NotificationServer": { "command": "python", "args": [ "-m", "mcp_server_notify", ] } } }

⚡️ カーソルと一緒に使用する:

設定ファイル~/.cursor/mcp.jsonまたはyour_project/.cursor/mcp.jsonを見つけます。

{ "mcpServers": { "NotificationServer": { "command": "uv", "args": [ "--directory", "path/to/your/mcp_server_notify project", "run", "mcp-server-notify", ] } } }

設定後、 finally, send me a notification when task finished.のようなプロンプトを追加するだけで、通知をトリガーするための AI へのタスク入力が完了します。

カーソルでは、このプロンプトをCursor Settings -> Rulesでルールとして追加できるため、毎回手動で���力する必要はありません。

⚡️ VSCode + Copilot で使用する場合:

  1. サービスマネージャーuv/uvxをインストールします: pip install uv

  2. VSCode 設定にサービスを追加します。

    Windows %APPDATA%\Code\User\settings.json
    macOS $HOME/Library/Application\ Support/Code/User/settings.json
    Linux $HOME/.config/Code/User/settings.json

    "mcp": { "servers": { "notifier": { "command": "uvx", "args": [ "mcp-server-notify" ], "env": {} } } }
  3. VSCodeの最新バージョンを使用していることを確認してください。MCPサービスが自動的に実行されます。

  4. VSCode を開く → Copilot を有効にする → エージェント モードに切り替えます。

  5. と入力すると、#send_notification オプションが表示されます。

  6. エージェントに依頼します: #send_notification を実行します (通知は自動的に処理されます)。

  7. エージェント モードの Copilot はデスクトップ通知を送信できるようになりました。

🐳 Docker で実行する

環境互換性の問題により、現在ご利用いただけません。ホストOSがWindows、macOS、Linuxのいずれであっても、Dockerコンテナがホスト通知をトリガーする必要がある場合、ソリューションははるかに複雑になり、ネイティブ通知を直接使用することは通常不可能です。

主な問題点:

  1. OS 固有の通知システム 各オペレーティング システム (Windows、macOS、Linux) には独自の通知メカニズムがあります。

  2. Docker の分離 Docker コンテナの分離により、ホスト オペレーティング システムのリソースに直接アクセスする機能が制限されます。

  3. 依存関係の管理 オペレーティング システムごとに異なる通知ライブラリと依存関係を処理する必要があります。

🧾 ライセンス

マサチューセッツ工科大学

💻 貢献

問題やプルリクエストを歓迎します!

Deploy Server
A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

local-only server

The server can only run on the client's local machine because it depends on local resources.

AI エージェント タスクが完了するとデスクトップ通知とアラート音を送信するモデル コンテキスト プロトコル サービス。Claude Desktop や Cursor などのさまざまな LLM クライアントと統合されています。

  1. 🥩 機能
    1. ⏬ インストール
      1. UVパッケージマネージャーを使用してインストールする
    2. ⚠️❕ 特別な要件
      1. 📚 使用方法
        1. Claude Desktop での使用:
        2. ⚡️ カーソルと一緒に使用する:
        3. ⚡️ VSCode + Copilot で使用する場合:
      2. と入力すると、#send_notification オプションが表示されます。
        1. 🐳 Docker で実行する
        2. 🧾 ライセンス
        3. 💻 貢献

      Related MCP Servers

      • -
        security
        A
        license
        -
        quality
        A Model Context Protocol implementation that enables AI agents to send notifications through Pushover.net, supporting message customization with various parameters like priority, sound, and URL.
        Last updated -
        23
        28
        MIT License
      • -
        security
        A
        license
        -
        quality
        A Model Context Protocol implementation that plays sound effects (completion, error, notification) for Cursor AI and other MCP-compatible environments, providing audio feedback for a more interactive coding experience.
        Last updated -
        3
        1
        MIT License
        • Apple
        • Linux
      • -
        security
        F
        license
        -
        quality
        A Model Context Protocol server that enables conversational LLMs to delegate complex research tasks to specialized AI agents powered by various OpenRouter models, coordinated by a Claude orchestrator.
        Last updated -
        3
        29
        • Apple
      • -
        security
        A
        license
        -
        quality
        A Model Context Protocol server that enables intelligent task delegation from advanced AI agents like Claude 3.7 to cost-effective LLMs, providing a comprehensive suite of tools spanning cognitive memory, browser automation, Excel manipulation, database interactions, and document processing.
        Last updated -
        109
        MIT License

      View all related MCP servers

      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/Cactusinhand/mcp_server_notify'

      If you have feedback or need assistance with the MCP directory API, please join our Discord server