mcp-notify
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-notifyNotify me when the deployment finishes with a summary of the result."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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):
{
"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.
Related MCP server: Notifications MCP Server
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 |
| yes | Short banner title, e.g. "Build finished" |
| yes | 1–2 sentence description, e.g. "All 142 tests passed" |
| 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:
NOTIFY_SOUNDenv var — absolute path, explicit and deterministicA file in the
sounds/folder whose name starts withdefault(your pin)First audio file in the
sounds/folder (alphabetical —notify-me.mp3ships here as the bundled default)The generated chime in
assets/The system sound (macOS
Glass.aiff, Linuxbell.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 under a commercial license.
{
"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 |
|
|
Linux |
|
|
Windows | PowerShell | PowerShell |
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
npm install
npm run typecheck
npm test # builds, then runs the e2e suite (sound + banner fire locally)License
MIT — see LICENSE.
Available Tools
2 toolslist_soundsList soundsA
List audio files available to the notify tool and the currently selected default sound. Resolution order: NOTIFY_SOUND env var, sounds/default* file, first file in sounds/, bundled chime, system sound.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It clarifies that the tool lists available files and the default sound, and it details the resolution order, which is helpful context. However, it does not explicitly state whether the operation is read-only (though 'list' implies it), nor does it describe what the response looks like or possible error conditions. This is adequate but not rich beyond the immediate action.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, tightly packed sentence that leads with the primary purpose and then provides the resolution order without any filler. Every clause carries meaning, and the structure is efficient and easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (no parameters, no output schema, no annotations), the description covers the main functionality and even adds the resolution order, which is beyond the minimum. However, it does not specify the exact format of the returned list (e.g., array of filenames, structure of default sound), so an agent must infer that from the description or experience. This is a minor gap but not significant enough to lower it further.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the schema is inherently complete and there is nothing for the description to add. The baseline for zero parameters is 4, and the description does not need to compensate for any schema gaps. It also does not introduce any misleading parameter-related information.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: it lists audio files available to the notify tool and the currently selected default sound. This is a specific verb+resource combination that distinguishes it from the sibling 'notify' (which sends notifications rather than listing sounds).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides context about what the tool lists (sounds for notify) but does not explicitly specify when to use this tool versus alternatives. There is no direct guidance such as 'use this to check available sounds before calling notify' or any note about when not to use it. The resolution order is more about default sound determination than usage conditions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
notifyNotifyA
Play a notification sound on the user's computer and show a system banner. Call this whenever a task is done, something needs the user's attention, or the user asks to be notified. Always write a concise, human-friendly title and message describing what just happened or needs attention (e.g. title: 'Build finished', message: 'All 142 tests passed, no errors.'). Default sound resolution: NOTIFY_SOUND env var, then a sounds/default* file, then the first file in this server's sounds/ folder, then the bundled chime, then the system sound. You can pass an absolute path to any audio/video file with audio (mp4, m4a, mp3, wav, aiff) in sound.
| Name | Required | Description | Default |
|---|---|---|---|
| sound | No | Absolute path to a sound file to play instead of the default. | |
| title | Yes | Short banner title (max 50 chars), e.g. 'Task done', 'Build finished', 'Needs your input'. | |
| message | Yes | One or two sentence description of what happened, shown in the notification banner. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It comprehensively covers the default sound resolution order, the accepted file formats for custom sounds, and guidance on writing title/message. It does not mention any side effects like whether the call blocks or returns a value, but for a notification tool this level of detail is sufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose and usage trigger, then introduces the title/message guidance, and finally details sound resolution. It is a bit long but every sentence carries useful information. The structure is logical and skimmable, though slightly verbose for an agent scanning quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple nature of the tool (3 params, no output schema), the description covers everything an agent needs: when to use it, how to write parameters, and the fallback behavior for sound. No critical information is missing, making it complete for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds value beyond the schema by providing example titles/messages and explaining the `sound` parameter's behavior (absolute path, supported audio formats, override logic). This enriches the agent's understanding beyond the raw property descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names a specific verb ('play', 'show') and resource ('notification sound', 'system banner'), making the tool's function immediately clear. It also gives concrete examples of when to use it, which distinguishes it from the sibling list_sounds without needing explicit exclusion.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to call the tool ('whenever a task is done, something needs the user's attention, or the user asks to be notified'), which is clear guidance. However, it does not mention when NOT to use it or alternative tools, so it misses the 'when-not/alternatives' component for a full 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
2 tool updates
v0.2.1- First observed
list_sounds - First observed
notify
TDQS
The two tools serve entirely different functions: notify triggers the notification while list_sounds enumerates available sounds and the default. There is no overlap or ambiguity between them.
Both tools use imperative verbs ('notify', 'list_sounds'), but 'notify' lacks a noun object unlike 'list_sounds' which follows verb_noun. Still, they are clear and predictable with no style mixing.
With only 2 tools, the server is minimal but appropriately scoped for a simple notification utility. It does not feel under- or over-populated for its purpose.
The tool surface covers the core functionality (sending notifications and inspecting available sounds). Minor gaps like muting or configuration could exist, but for a focused utility it is reasonably complete.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Push notifications for AI agents - send instant iPhone notifications from any MCP client.
Give your AI agent a memory and body on your iPhone: set alarms, ring your phone, over MCP.
- mcp-serverOAuthnet.vybit
Push notifications with personalized sounds - manage and trigger your vybits via MCP
Reach your own phone from an AI agent: notifications, approval questions, reminders, ring, files.
Related MCP Servers
- FlicenseCqualityDmaintenanceSends 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-
- AlicenseNot gradedqualityDmaintenanceEnables 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.201MIT
- AlicenseBqualityDmaintenanceEnables AI assistants to send desktop notifications on macOS with rich formatting, urgency levels, and sound options.1261MIT
- AlicenseDqualityDmaintenanceEnables MCP agents to send desktop notifications for completed tasks, failures, and important updates, providing visible and reliable feedback.1682Apache 2.0
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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