mcp-notifications
Desktop system notifications for MCP agents โ instant feedback on tasks, failures, and workflow events.
mcp-notifications
๐ Ship faster. Miss nothing.
mcp-notifications lets your MCP agent send desktop notifications for completed tasks, failures, and important updates.
This is especially useful for console AI agents, because they usually have no built-in notifications by default.
No more checking chats every minute.
No more silent agent responses.
Just visible, reliable feedback on your desktop. ๐
Common problem this solves
You give tasks to several AI agents, then wait and keep checking who already replied.
With mcp-notifications, this gets simpler: the agent can notify you on desktop when it needs your input or when work
is done.
Why teams install this
- โก Immediate feedback from your MCP workflows.
- ๐ง Better focus: let the agent work while you stay on your main task.
- ๐ฅ๏ธ Native OS notifications via
node-notifier. - ๐งต Non-blocking behavior: notification sending is queued in background.
Install globally
Requirements:
- Node.js
>=20 - npm
>=10
npm i -g @topvisor/mcp-notifications
Executable name (use this in MCP config):
mcp-notifications
mcp-notifications is an MCP server entrypoint (stdio), not a one-shot notification command.
Setup: Codex
Add this to ~/.codex/config.toml:
[mcp_servers.notifications]
enabled = true
command = "mcp-notifications"
args = []
Restart Codex after config update.
Setup: Claude Agent
Add MCP server config to your Claude client config file:
{
"mcpServers": {
"notifications": {
"command": "mcp-notifications",
"args": []
}
}
}
Then restart Claude client.
AI Agent Notification Instructions
There are two approaches to notifications: manual and automatic.
Choose the one that works better for your workflow.
Manual
In a task where you want to be notified, explicitly ask the agent. Example:
Count files in the project; after the task is fully complete, notify me with sound.
You can also define sound, topic, and frequency rules inside a specific chat. Example:
Notify me about your replies without sound, include the reply text, and use title: "Large Refactoring"
Automatic
Automatic notifications can be configured globally or per project.
Example instruction to enable automatic notifications for agent replies:
Send `send_notification` after your replies (actual task time >5 seconds or many steps); `play_sound: false`; `app_id: '{put your chat name here}'`
Time is a rough threshold and depends on model behavior, so adjust this instruction to your own preferences.
In Skills
You can also enable notifications in specific skills. Example for a Review skill:
After the review, run `send_notification` with a short summary; `play_sound: true`; `app_id: 'Reviewer {put task id here}'`
Tool
send_notification
Input:
titlestring(required)messagestring(required)play_soundboolean(optional, default:false)iconstring(optional, absolute or relative path to image file)app_idstring(optional, Windows App User Model ID for toast source)
Example:
{
"title": "Codex",
"message": "Deployment completed successfully",
"play_sound": true,
"icon": "/opt/mcp-notifications/icons/custom.png",
"app_id": "Topvisor.Codex"
}
app_id (Windows)
app_idcontrols the source shown in Windows toast notifications.- If
app_idis not set, Windows may showSnoreToastas the source. - You can pass
app_idin each tool call, or setMCP_NOTIFICATIONS_APP_IDas an environment variable for the server.
Chat Prompts To Test In Codex
Use these messages directly in chat:
Check send_notification
Send a notification without sound: title "Test", message "Check"
Send a notification with sound: title "Test", message "Check"
Send a notification with app_id "Topvisor.Codex": title "Test", message "Check"
Send 3 test notifications in a row without sound
Expected tool result in logs/response:
Notification queued
Behavior
- โ Uses standard system notification channels.
- ๐ Uses the standard system notification sound when
play_sound: true. - ๐ค Uses bundled Topvisor robot image as default notification icon.
- ๐งฐ Returns quickly while notifications are delivered in background queue.
Example
The AI agent is waiting for you:

Related Servers
Foreman MCP Server
MCP server for Foreman host management and infrastructure automation.
StashDog MCP Server
A server providing natural language tools to manage your StashDog inventory.
Subconscious AI MCP
Run conjoint experiments and causal research through AI powered behavioral simulations
MCP Notes
A simple note-taking server for recording and managing notes with AI models, using AWS DynamoDB for storage.
MCP Microsoft Office Bridge
A secure, multi-user server connecting LLMs to Microsoft 365 services.
Vedit-MCP
Perform basic video editing operations using natural language commands. Requires ffmpeg to be installed.
AI Tutor
An AI-powered tutor for higher education that supports both Claude and OpenAI models through MCP.
Linear
Interact with the Linear API to manage issues, projects, and teams.
MCP-MD-PDF: Markdown to Word/PDF Converter
A simple, reliable Model Context Protocol (MCP) server that converts Markdown files into professional Word (.docx) and PDF documents โ with full support for .dotx templates.
YouTrack
Access the YouTrack REST API to manage projects and track issues in real-time.