notifications_send_notification
Send system notifications on macOS with a title, message, and optional sound using this tool integrated with AppleScript for efficient macOS interaction.
Instructions
[Notification management] Send a system notification
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | Notification message | |
sound | No | Play sound with notification | |
title | Yes | Notification title |
Input Schema (JSON Schema)
{
"properties": {
"message": {
"description": "Notification message",
"type": "string"
},
"sound": {
"default": true,
"description": "Play sound with notification",
"type": "boolean"
},
"title": {
"description": "Notification title",
"type": "string"
}
},
"required": [
"title",
"message"
],
"type": "object"
}