show_popup_notification
Display desktop popup notifications with custom titles, messages, urgency levels, and icons. Ideal for alerting users upon task completion or when input is required.
Instructions
Show a popup notification using notify-send/dunst. Useful for notifying the user when an operation is complete or when waiting for user input.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
icon | No | Icon name or path for the notification | |
message | Yes | The notification message | |
timeout | No | Notification timeout in milliseconds (default: 5000) | |
title | Yes | The notification title | |
urgency | No | Notification urgency level (default: normal) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"icon": {
"description": "Icon name or path for the notification",
"type": "string"
},
"message": {
"description": "The notification message",
"type": "string"
},
"timeout": {
"description": "Notification timeout in milliseconds (default: 5000)",
"type": "number"
},
"title": {
"description": "The notification title",
"type": "string"
},
"urgency": {
"description": "Notification urgency level (default: normal)",
"enum": [
"low",
"normal",
"critical"
],
"type": "string"
}
},
"required": [
"title",
"message"
],
"type": "object"
}