Desktop Notification MCP Server
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., "@Desktop Notification MCP ServerSend a high priority notification that the build failed"
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.
Desktop Notification MCP Server
A Model Context Protocol (MCP) server that enables AI agents to send cross-platform desktop notifications with priority levels, categories, and duration control.
Features
Cross-platform support (macOS, Windows, Linux)
Priority levels for urgency control
Category-based visual distinction
Configurable display duration
Optional notification sounds
Success/error status reporting
Related MCP server: Notifications MCP Server
Installation
npm install
npm run buildUsage
With Claude Desktop
Add to your Claude Desktop configuration file:
macOS/Linux: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"desktop-notifications": {
"command": "node",
"args": [
"/absolute/path/to/desktop-notification-mcp/dist/index.js"
]
}
}
}Parameters
Parameter | Type | Default | Description |
| string | required | Notification title |
| string | required | Notification message body |
| boolean |
| Enable notification sound |
| string |
| Priority level: |
| string |
| Category: |
| number | auto | Display duration in milliseconds (0 = persistent) |
Priority Levels
low- Quick updates, 5 second timeoutnormal- Standard notifications, 10 second timeout (default)high- Important updates, 15 second timeoutcritical- Critical alerts, persistent until dismissed
Categories
task- General task notificationserror- Error and failure notificationssuccess- Success and completion notificationsprogress- Progress updatesquestion- Questions requiring user attentionreminder- Reminders and scheduled notifications
Examples
Basic Notification
{
"title": "Task Complete",
"message": "Your analysis has finished"
}High Priority Error
{
"title": "Build Failed",
"message": "Tests failed - review errors in output",
"priority": "high",
"category": "error",
"sound": true
}Critical Alert (Persistent)
{
"title": "User Input Required",
"message": "Please review the following options",
"priority": "critical",
"category": "question",
"sound": true
}Progress Update
{
"title": "Processing...",
"message": "Step 3 of 10 complete",
"priority": "low",
"category": "progress",
"duration": 3000
}Success Notification
{
"title": "Deployment Complete",
"message": "Successfully deployed to production",
"priority": "normal",
"category": "success",
"sound": true
}Platform Support
The server automatically detects and uses the appropriate notification system:
macOS 10.8+: Notification Center
Windows 8+: Toast Notifications
Windows < 8: Taskbar Balloons
Linux: notify-send (requires
libnotify-bin)
Platform-Specific Behavior
Linux: Priority maps to urgency parameter (low/normal/critical), duration controls timeout precisely
Windows/macOS: Priority and category shown via visual indicators, timeout behavior varies by OS version
Linux Requirements
Install notification support:
# Ubuntu/Debian
sudo apt-get install libnotify-bin
# Fedora
sudo dnf install libnotify
# Arch
sudo pacman -S libnotifyThis server cannot be installed
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 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.Last updated2
- Alicense-qualityDmaintenanceEnables 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.Last updated201MIT
- AlicenseBqualityDmaintenanceEnables AI assistants to send Windows toast notifications and dialog boxes, allowing them to actively notify users and request confirmations through native Windows UI.Last updated21ISC
- AlicenseBqualityDmaintenanceEnables AI assistants to send desktop notifications on macOS with rich formatting, urgency levels, and sound options.Last updated1181MIT
Related MCP Connectors
Let your AI agent notify you by email, Slack, Discord, or webhook. One tool: send_notification.
Push notifications for AI agents - send instant iPhone notifications from any MCP client.
Persistent memory and knowledge management for AI agents with semantic search and 50+ tools.
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/GhostTypes/desktop-notification-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server