apple-notifier-mcp

send_notification

Send a notification on macOS using osascript

Input Schema

NameRequiredDescriptionDefault
messageYesMain message content
soundNoWhether to play the default notification sound
subtitleNoOptional subtitle
titleYesTitle of the notification

Input Schema (JSON Schema)

{ "additionalProperties": false, "properties": { "message": { "description": "Main message content", "type": "string" }, "sound": { "default": true, "description": "Whether to play the default notification sound", "type": "boolean" }, "subtitle": { "description": "Optional subtitle", "type": "string" }, "title": { "description": "Title of the notification", "type": "string" } }, "required": [ "title", "message" ], "type": "object" }