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
Tool Parameters
notification_send
Sends a notification event with a specified type and message. The notification type determines how the message is categorized and displayed in the system.
| Parameter | Type | Required | Description |
|---|---|---|---|
| message | string | Yes | The notification message content to display |
| eventType | string | Yes | The type of notification. Must be one of: debug, git, planner, browser, editor, terminal, console, preview |
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.