timtoday/mcp-windows-notify
3.3
If you are the rightful owner of mcp-windows-notify and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
A specialized MCP plugin for Windows that provides system notifications for task completion in AI development tools.
Tools
4
Resources
0
Prompts
0
Windows通知MCP插件
一个专为Windows环境设计的MCP(Model Context Protocol)插件,支持在AI开发工具最小化时通过系统通知提醒用户任务完成状态。
快速开始
直接在您的MCP配置中使用,无需预先安装:
{
"mcpServers": {
"windows-notify": {
"command": "npx",
"args": ["-y", "mcp-windows-notify"]
}
}
}
功能特性
- 🔔 Windows原生系统通知支持
- 🎨 多种通知图标类型(信息、警告、错误、成功)
- 🔊 可配置声音提醒
- ⏰ 自定义通知显示时长
- 🛠️ 多种预设通知类型(任务完成、错误提醒、一般提醒)
- ⚙️ 环境变量配置支持
安装方法
方法一:NPX(推荐)
无需预先安装,直接在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开发工具中配置
在你的AI开发工具(如Claude Desktop、Cursor等)的MCP配置中添加:
使用npx(推荐)
{
"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"
}
}
}
}
可用工具
1. send_notification
发送自定义Windows系统通知
参数:
message
(必需): 通知消息内容title
(可选): 通知标题icon
(可选): 图标类型 (info
,warning
,error
,success
)sound
(可选): 是否播放声音timeout
(可选): 显示时长(毫秒)subtitle
(可选): 副标题
2. notify_task_complete
发送任务完成通知
参数:
taskName
(必需): 任务名称details
(可选): 任务详情
3. notify_error
发送错误通知
参数:
errorMessage
(必需): 错误消息details
(可选): 错误详情
4. notify_reminder
发送提醒通知
参数:
message
(必需): 提醒消息subtitle
(可选): 副标题
使用示例
当AI助手完成代码修改后,可以调用:
// 任务完成通知
notify_task_complete({
"taskName": "代码重构完成",
"details": "已成功重构用户认证模块,请继续开发"
})
// 错误通知
notify_error({
"errorMessage": "编译失败",
"details": "发现3个TypeScript类型错误"
})
// 自定义通知
send_notification({
"title": "开发提醒",
"message": "请检查新增的API接口文档",
"icon": "info",
"sound": true
})
技术栈
- Node.js - 运行环境
- TypeScript - 开发语言
- @modelcontextprotocol/sdk - MCP协议支持
- node-notifier - Windows通知API
系统要求
- Windows 10/11
- Node.js 18.0.0+
- PowerShell 5.0+
贡献
欢迎贡献代码!请查看 了解详细信息。
开发
git clone https://github.com/timtoday/mcp-windows-notify.git
cd mcp-windows-notify
npm install
npm run dev # 监听文件变化并自动编译
提交问题
如果您遇到问题或有功能建议,请在 GitHub Issues 中提交。
支持
许可证
MIT License - 查看 文件了解详细信息。