Skip to main content
Glama
mrfqcentic

mcp-notify

by mrfqcentic

mcp-notify

Servidor MCP mínimo que reproduce un sonido de notificación y muestra un banner del sistema en tu ordenador cada vez que tu agente de IA termina una tarea o necesita tu atención.

Funciona con cualquier cliente MCP: Claude Desktop, Claude Code, Cursor, VS Code, opencode, Cline y más. Una configuración de 3 líneas, sin claves API, sin llamadas de red — solo toca tus recursos locales de audio y notificaciones.

Instalación

Añádelo a la configuración MCP de tu cliente (Claude Desktop claude_desktop_config.json, Cursor / VS Code mcp.json, o la configuración de opencode):

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

(usuarios de opencode: misma forma bajo la clave mcp con "type": "local" y "command": ["npx", "-y", "@mrfqcentic/mcp-notify"].)

Requiere Node.js >= 20.

Related MCP server: Notifications MCP Server

Haz que el agente lo llame

Añade una línea a tu AGENTS.md / CLAUDE.md / prompt del sistema:

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.

Herramientas

notify

Reproduce el sonido y muestra un banner. El agente siempre proporciona title (máx. 50 caracteres) y message (máx. 200 caracteres).

Parámetro

Requerido

Descripción

title

Título corto del banner, p. ej. "Compilación terminada"

message

Descripción de 1–2 frases, p. ej. "Las 142 pruebas pasaron"

sound

no

Ruta absoluta a cualquier archivo de audio/vídeo con audio (mp4, m4a, mp3, wav, aiff)

list_sounds

Lista los sonidos disponibles y el predeterminado seleccionado actualmente.

Elegir tu sonido

Orden de resolución:

  1. Variable de entorno NOTIFY_SOUND — ruta absoluta, explícita y determinista

  2. Un archivo en la carpeta sounds/ cuyo nombre empiece por default (tu elección)

  3. Primer archivo de audio en la carpeta sounds/ (alfabético — notify-me.mp3 se incluye aquí como predeterminado integrado)

  4. El timbre generado en assets/

  5. El sonido del sistema (macOS Glass.aiff, Linux bell.oga)

Consejo: renombra o copia tu sonido favorito a sounds/default.mp3 (o establece NOTIFY_SOUND) para que se mantenga.

El sounds/notify-me.mp3 incluido se generó con ElevenLabs bajo una licencia comercial.

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

Consejo: los archivos MP4 con pista de audio también funcionan (macOS afplay lee la transmisión de audio).

Plataformas

SO

Sonido

Banner

macOS

afplay (probado)

osascript (probado)

Linux

cadena de respaldo ffplay / mpg123 / paplay / aplay (mejor esfuerzo)

notify-send (mejor esfuerzo)

Windows

PowerShell MediaPlayer (mejor esfuerzo)

globo de PowerShell NotifyIcon (mejor esfuerzo)

Cualquier valor de la variable de entorno CI hace que la reproducción de sonido y banner sean no operativas (se establece automáticamente en los flujos de trabajo de CI) para que el conjunto de pruebas pueda ejecutarse en máquinas sin audio.

Desarrollo

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

Licencia

MIT — ver 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