send_notification
Send desktop notifications with optional sound alerts to notify users of AI agent task completions. Configure title, message, sound, and timeout for effective communication.
Instructions
Send system notification with optional sound
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | ||
play_sound | No | ||
timeout | No | ||
title | Yes |
Input Schema (JSON Schema)
{
"description": "Request schema for sending a system notification\n\ntitle: str - Notification title\n\nmessage: str - Notification message\n\nplay_sound: bool - Whether to play a sound\n\ntimeout: int - Notification timeout in seconds",
"properties": {
"message": {
"title": "Message",
"type": "string"
},
"play_sound": {
"default": true,
"title": "Play Sound",
"type": "boolean"
},
"timeout": {
"default": 60,
"title": "Timeout",
"type": "integer"
},
"title": {
"title": "Title",
"type": "string"
}
},
"required": [
"title",
"message"
],
"title": "NotificationRequest",
"type": "object"
}