send_notification
Send macOS notifications with optional tmux integration, enabling targeted alerts for specific tmux sessions, windows, or panes when clicked.
Instructions
Send a macOS notification with optional tmux integration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | The notification message | |
pane | No | tmux pane number | |
session | No | tmux session name | |
sound | No | The notification sound (default: "Glass") | |
title | No | The notification title (default: "Claude Code") | |
useCurrent | No | Use current tmux location | |
window | No | tmux window number |
Input Schema (JSON Schema)
{
"properties": {
"message": {
"description": "The notification message",
"type": "string"
},
"pane": {
"description": "tmux pane number",
"type": "string"
},
"session": {
"description": "tmux session name",
"type": "string"
},
"sound": {
"description": "The notification sound (default: \"Glass\")",
"type": "string"
},
"title": {
"description": "The notification title (default: \"Claude Code\")",
"type": "string"
},
"useCurrent": {
"description": "Use current tmux location",
"type": "boolean"
},
"window": {
"description": "tmux window number",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}