Sending Notifications¶
How to send fire-and-forget notifications — parameters, surface rendering, and examples
When to use¶
agent wants to inform the user of an event with no response expected
Slash command: /wb-notify
Related capabilities¶
notifications/notification_send
Directions¶
Call: mcp__work-buddy__wb_run("notification_send", params)
Parameters: - title (required): Short subject line - body: Longer description - priority: "low", "normal" (default), "high", "urgent" - surfaces: Target specific surfaces (e.g., ["telegram"], ["dashboard"]). Default: all available
Surface rendering: - Dashboard: toast popup (click to dismiss; click to expand if body is long) - Obsidian: Notice toast - Telegram: plain message (no buttons)
Example:
mcp__work-buddy__wb_run("notification_send", {
"title": "Journal updated",
"body": "3 log entries appended to today's journal."
})