applescript-mcp

notifications_send_notification

[Notification management] Send a system notification

Input Schema

NameRequiredDescriptionDefault
messageYesNotification message
soundNoPlay sound with notification
titleYesNotification 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" }