codebolt.notification
Notification system for sending event-based notifications.
Available Tools
notification_send
- Send a notification with a specific event type
Event Types
The following event types are supported:
debug
- Debug notificationsgit
- Git operation notificationsplanner
- Planner notificationsbrowser
- Browser operation notificationseditor
- Editor notificationsterminal
- Terminal notificationsconsole
- Console notificationspreview
- Preview notifications
Sample Usage
// Send a notification with event type
const result = await codebolt.tools.executeTool(
"codebolt.notification",
"notification_send",
{
message: "Test notification for debug",
eventType: "debug"
}
);
// Send a notification for git operations
const gitResult = await codebolt.tools.executeTool(
"codebolt.notification",
"notification_send",
{
message: "Test notification for git",
eventType: "git"
}
);
// Send a notification for browser operations
const browserResult = await codebolt.tools.executeTool(
"codebolt.notification",
"notification_send",
{
message: "Test notification for browser",
eventType: "browser"
}
);
info
This functionality provides event-based notifications through the MCP interface.