Skip to main content
ClaudeWave

Minimal MCP notification server — plays a sound and shows a system banner when your AI agent finishes a task

MCP ServersRegistry oficial0 estrellas0 forksTypeScriptMITActualizado today
ClaudeWave Trust Score
87/100
Trusted
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Documented (README)
Last scanned: 8/22/2026
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/mrfqcentic/mcp-notify
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "mcp-notify": {
      "command": "node",
      "args": ["/path/to/mcp-notify/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/mrfqcentic/mcp-notify and follow its README for install instructions.
Casos de uso

Resumen de MCP Servers

# mcp-notify

Minimal MCP server that plays a **notification sound** and shows a **system banner** on your computer whenever your AI agent finishes a task or needs your attention.

Works with any MCP client: Claude Desktop, Claude Code, Cursor, VS Code, opencode, Cline, and more. One 3-line config, no API keys, no network calls — it only touches your local audio and notification facilities.

## Install

Add to your client's MCP config (Claude Desktop `claude_desktop_config.json`, Cursor / VS Code `mcp.json`, or opencode config):

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

(opencode users: same shape under the `mcp` key with `"type": "local"` and `"command": ["npx", "-y", "@mrfqcentic/mcp-notify"]`.)

Requires Node.js >= 20.

## Make the agent call it

Add one line to your `AGENTS.md` / `CLAUDE.md` / system prompt:

```
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.
```

## Tools

### `notify`

Plays the sound and shows a banner. The agent always supplies `title` (max 50 chars) and `message` (max 200 chars).

| Param | Required | Description |
|---|---|---|
| `title` | yes | Short banner title, e.g. "Build finished" |
| `message` | yes | 1–2 sentence description, e.g. "All 142 tests passed" |
| `sound` | no | Absolute path to any audio/video file with audio (mp4, m4a, mp3, wav, aiff) |

### `list_sounds`

Lists available sounds and the currently selected default.

## Choosing your sound

Resolution order:

1. `NOTIFY_SOUND` env var — absolute path, explicit and deterministic
2. A file in the `sounds/` folder whose name starts with `default` (your pin)
3. First audio file in the `sounds/` folder (alphabetical — `notify-me.mp3` ships here as the bundled default)
4. The generated chime in `assets/`
5. The system sound (macOS `Glass.aiff`, Linux `bell.oga`)

Tip: rename or copy your favorite sound to `sounds/default.mp3` (or set `NOTIFY_SOUND`) to make it stick.

The bundled `sounds/notify-me.mp3` was generated with [ElevenLabs](https://elevenlabs.io) under a commercial license.

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

Tip: MP4 files with an audio track work too (macOS `afplay` reads the audio stream).

## Platforms

| OS | Sound | Banner |
|---|---|---|
| macOS | `afplay` (tested) | `osascript` (tested) |
| Linux | `ffplay` / `mpg123` / `paplay` / `aplay` fallback chain (best effort) | `notify-send` (best effort) |
| Windows | PowerShell `MediaPlayer` (best effort) | PowerShell `NotifyIcon` balloon (best effort) |

Any `CI` env value makes sound and banner playback no-ops (set automatically in CI workflows) so the test suite can run on machines without audio.

## Development

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

## License

MIT — see [LICENSE](./LICENSE).

Lo que la gente pregunta sobre mcp-notify

¿Qué es mrfqcentic/mcp-notify?

+

mrfqcentic/mcp-notify es mcp servers para el ecosistema de Claude AI. Minimal MCP notification server — plays a sound and shows a system banner when your AI agent finishes a task Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-08-21.

¿Cómo se instala mcp-notify?

+

Puedes instalar mcp-notify clonando el repositorio (https://github.com/mrfqcentic/mcp-notify) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar mrfqcentic/mcp-notify?

+

Nuestro agente de seguridad ha analizado mrfqcentic/mcp-notify y le ha asignado un Trust Score de 87/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene mrfqcentic/mcp-notify?

+

mrfqcentic/mcp-notify es mantenido por mrfqcentic. La última actividad registrada en GitHub es del 2026-08-21, con 0 issues abiertos.

¿Hay alternativas a mcp-notify?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega mcp-notify en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: mrfqcentic/mcp-notify
[![Featured on ClaudeWave](https://claudewave.com/api/badge/mrfqcentic-mcp-notify)](https://claudewave.com/repo/mrfqcentic-mcp-notify)
<a href="https://claudewave.com/repo/mrfqcentic-mcp-notify"><img src="https://claudewave.com/api/badge/mrfqcentic-mcp-notify" alt="Featured on ClaudeWave: mrfqcentic/mcp-notify" width="320" height="64" /></a>

Más MCP Servers

Alternativas a mcp-notify