Skip to main content
Glama
mrfqcentic

mcp-notify

by mrfqcentic

mcp-notify

最小限のMCPサーバーで、AIエージェントがタスクを完了したときや注意が必要なときに、通知音を再生し、システムバナーを表示します。

あらゆるMCPクライアントで動作します: Claude Desktop、Claude Code、Cursor、VS Code、opencode、Clineなど。3行の設定だけで、APIキー不要、ネットワーク呼び出し不要 — ローカルの音声機能と通知機能にのみアクセスします。

インストール

クライアントのMCP設定に追加します (Claude Desktopのclaude_desktop_config.json、Cursor / VS Codeのmcp.json、またはopencodeの設定):

{
  "mcpServers": {
    "mcp-notify": {
      "command": "npx",
      "args": ["-y", "@mrfqcentic/mcp-notify"]
    }
  }
}

(opencodeユーザー: mcpキーの下に同じ形で、"type": "local""command": ["npx", "-y", "@mrfqcentic/mcp-notify"]を指定します。)

Node.js >= 20が必要です。

Related MCP server: Notifications MCP Server

エージェントに呼び出させる

AGENTS.md / CLAUDE.md / システムプロンプトに1行追加します:

When a task is done or the user should be alerted, call the `notify` tool with a short title and a 1–2 sentence description of the result.

ツール

notify

サウンドを再生し、バナーを表示します。エージェントは常にtitle(最大50文字)とmessage(最大200文字)を提供します。

パラメータ

必須

説明

title

はい

短いバナータイトル。例: "Build finished"

message

はい

1〜2文の説明。例: "All 142 tests passed"

sound

いいえ

音声を含む任意のオーディオ/ビデオファイルの絶対パス (mp4、m4a、mp3、wav、aiff)

list_sounds

利用可能なサウンドと現在選択されているデフォルトを一覧表示します。

サウンドの選択

優先順位:

  1. NOTIFY_SOUND環境変数 — 絶対パス。明示的で決定的

  2. sounds/フォルダ内の名前がdefaultで始まるファイル (ピン留めしたもの)

  3. sounds/フォルダ内の最初の音声ファイル (アルファベット順 — バンドルされたデフォルトとしてnotify-me.mp3が同梱されています)

  4. assets/内の生成されたチャイム

  5. システムサウンド (macOS Glass.aiff、Linux bell.oga)

ヒント: お気に入りのサウンドをsounds/default.mp3にリネームまたはコピーするか(NOTIFY_SOUNDを設定するか)ことで固定できます。

同梱されているsounds/notify-me.mp3は、ElevenLabsで商用ライセンスのもと生成されました。

{
  "mcpServers": {
    "mcp-notify": {
      "command": "npx",
      "args": ["-y", "@mrfqcentic/mcp-notify"],
      "env": { "NOTIFY_SOUND": "/absolute/path/to/your-sound.mp3" }
    }
  }
}

ヒント: 音声トラック付きのMP4ファイルも動作します (macOS afplayが音声ストリームを読み取ります)。

対応プラットフォーム

OS

サウンド

バナー

macOS

afplay (テスト済み)

osascript (テスト済み)

Linux

ffplay / mpg123 / paplay / aplay フォールバックチェーン (ベストエフォート)

notify-send (ベストエフォート)

Windows

PowerShell MediaPlayer (ベストエフォート)

PowerShell NotifyIcon バルーン (ベストエフォート)

CI環境変数が設定されている場合、サウンドとバナーの再生はノーオペレーションになります (CIワークフローで自動設定されます)。これにより、音声のないマシンでもテストスイートを実行できます。

開発

npm install
npm run typecheck
npm test          # builds, then runs the e2e suite (sound + banner fire locally)

ライセンス

MIT — LICENSEを参照。

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • F
    license
    C
    quality
    D
    maintenance
    Sends system notifications when AI completes responses in MCP-compatible code editors, with cross-platform support for macOS, Windows, and Linux including customizable titles, messages, icons, and sound effects.
    2
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables AI assistants to send native macOS notifications for task completion alerts and reminders. Supports interactive features like custom system sounds, action buttons, and user replies directly from the notification center.
    201
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    Enables AI assistants to send desktop notifications on macOS with rich formatting, urgency levels, and sound options.
    1
    18
    1
    MIT
  • A
    license
    D
    quality
    D
    maintenance
    Enables MCP agents to send desktop notifications for completed tasks, failures, and important updates, providing visible and reliable feedback.
    1
    52
    2
    Apache 2.0

View all related MCP servers

Related MCP Connectors

  • Push notifications for AI agents - send instant iPhone notifications from any MCP client.

  • Let your AI agent notify you by email, Slack, Discord, or webhook. One tool: send_notification.

  • Let your AI sessions talk to each other — messaging, tasks, sessions, and alerts

View all MCP Connectors

Latest Blog Posts

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/mrfqcentic/mcp-notify'

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