1.0.1npm · mcp-windows-notify · current release
Observed 2026-08-18T05:22:22.457Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2024-11-05.
{
"tools": {}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
notify_error发送错误通知Input schema{
"type": "object",
"properties": {
"errorMessage": {
"type": "string",
"description": "错误消息"
},
"details": {
"type": "string",
"description": "错误详情(可选)"
}
},
"required": [
"errorMessage"
]
} | — | — · — | — |
notify_reminder发送提醒通知Input schema{
"type": "object",
"properties": {
"message": {
"type": "string",
"description": "提醒消息"
},
"subtitle": {
"type": "string",
"description": "提醒副标题(可选)"
}
},
"required": [
"message"
]
} | — | — · — | — |
notify_task_complete发送任务完成通知Input schema{
"type": "object",
"properties": {
"taskName": {
"type": "string",
"description": "任务名称"
},
"details": {
"type": "string",
"description": "任务详情(可选)"
}
},
"required": [
"taskName"
]
} | — | — · — | — |
send_notification发送Windows系统通知Input schema{
"type": "object",
"properties": {
"message": {
"type": "string",
"description": "通知消息内容"
},
"title": {
"type": "string",
"description": "通知标题(可选)"
},
"icon": {
"type": "string",
"enum": [
"info",
"warning",
"error",
"success"
],
"description": "通知图标类型(可选)"
},
"sound": {
"type": "boolean",
"description": "是否播放声音(可选)"
},
"timeout": {
"type": "number",
"description": "通知显示时长(毫秒,可选)"
},
"subtitle": {
"type": "string",
"description": "通知副标题(可选)"
}
},
"required": [
"message"
]
} | — | — · — | — |