Skip to main content
Glama
mrfqcentic

mcp-notify

by mrfqcentic

mcp-notify

Минимальный MCP-сервер, который воспроизводит звук уведомления и показывает системный баннер на вашем компьютере, когда ваш ИИ-агент завершает задачу или требует вашего внимания.

Работает с любым 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 / системный промпт:

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

да

Короткий заголовок баннера, напр. «Сборка завершена»

message

да

Описание в 1–2 предложения, напр. «Все 142 теста пройдены»

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 читает аудиопоток).

Платформы

ОС

Звук

Баннер

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