Notify
notifyPlay a notification sound and show a system banner to alert users when a task finishes or requires their attention, with support for custom audio files.
Instructions
Play a notification sound on the user's computer and show a system banner. Call this whenever a task is done, something needs the user's attention, or the user asks to be notified. Always write a concise, human-friendly title and message describing what just happened or needs attention (e.g. title: 'Build finished', message: 'All 142 tests passed, no errors.'). Default sound resolution: NOTIFY_SOUND env var, then a sounds/default* file, then the first file in this server's sounds/ folder, then the bundled chime, then the system sound. You can pass an absolute path to any audio/video file with audio (mp4, m4a, mp3, wav, aiff) in sound.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sound | No | Absolute path to a sound file to play instead of the default. | |
| title | Yes | Short banner title (max 50 chars), e.g. 'Task done', 'Build finished', 'Needs your input'. | |
| message | Yes | One or two sentence description of what happened, shown in the notification banner. |