🔔 Windows notification MCP server - Get desktop notifications when AI tasks complete. Works with Claude Desktop, Cursor & other MCP-compatible tools.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"windows-notify": {
"args": [
"-y",
"mcp-windows-notify"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
一个专为Windows环境设计的MCP(Model Context Protocol)插件,支持在AI开发工具最小化时通过系统通知提醒用户任务完成状态。
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked mcp-windows-notify against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Windows Notify and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
一个专为Windows环境设计的MCP(Model Context Protocol)插件,支持在AI开发工具最小化时通过系统通知提醒用户任务完成状态。
直接在您的MCP配置中使用,无需预先安装:
{
"mcpServers": {
"windows-notify": {
"command": "npx",
"args": ["-y", "mcp-windows-notify"]
}
}
}
无需预先安装,直接在MCP配置中使用:
npx mcp-windows-notify
npm install -g mcp-windows-notify
git clone https://github.com/timtoday/mcp-windows-notify.git
cd mcp-windows-notify
npm install
npm run build
npm install -g .
复制 .env.example 为 .env 并根据需要修改配置:
# Windows通知配置
NOTIFICATION_TITLE=AI助手通知
NOTIFICATION_SOUND=true
NOTIFICATION_TIMEOUT=5000
NOTIFICATION_ICON=info
# MCP服务器配置
MCP_SERVER_NAME=windows-notify
MCP_SERVER_VERSION=1.0.0
在你的AI开发工具(如Claude Desktop、Cursor等)的MCP配置中添加:
{
"mcpServers": {
"windows-notify": {
"command": "npx",
"args": ["-y", "mcp-windows-notify"],
"env": {
"NOTIFICATION_TITLE": "AI助手通知",
"NOTIFICATION_SOUND": "true",
"NOTIFICATION_TIMEOUT": "5000",
"NOTIFICATION_ICON": "info"
}
}
}
}
{
"mcpServers": {
"windows-notify": {
"command": "mcp-windows-notify",
"env": {
"NOTIFICATION_TITLE": "AI助手通知",
"NOTIFICATION_SOUND": "true",
"NOTIFICATION_TIMEOUT": "5000",
"NOTIFICATION_ICON": "info"
}
}
}
}
发送自定义Windows系统通知
参数:
message (必需): 通知消息内容title (可选): 通知标题icon (可选): 图标类型 (info, warning, error, success)sound (可选): 是否播放声音timeout (可选): 显示时长(毫秒)subtitle (可选): 副标题发送任务完成通知
参数:
taskName (必需): 任务名称details (可选): 任务详情发送错误通知
参数:
errorMessage (必需): 错误消息details (可选): 错误详情发送提醒通知
参数:
message (必需): 提醒消息subtitle (可选): 副标题当AI助手完成代码修改后,可以调用:
// 任务完成通知
notify_task_complete({
"taskName": "代码重构完成",
"details": "已成功重构用户认证模块,请继续开发"
})
// 错误通知
notify_error({
"errorMessage": "编译失败",
"details": "发现3个TypeScript类型错误"
})
// 自定义通知
send_notification({
"title": "开发提醒",
"message": "请检查新增的API接口文档",
"icon": "info",
"sound": true
})
欢迎贡献代码!请查看 CONTRIBUTING.md 了解详细信息。
git clone https://github.com/timtoday/mcp-windows-notify.git
cd mcp-windows-notify
npm install
npm run dev # 监听文件变化并自动编译
如果您遇到问题或有功能建议,请在 GitHub Issues 中提交。
MIT License - 查看 LICENSE 文件了解详细信息。