productivity
Novu MCP, CLI, and Lua Integration for AI Agents
Novu integration docs for AI agents: MCP gateway setup, Novu CLI commands, Lua API reference, credentials, and function schemas.Novu for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
novu.novu_list_notifications | Read read | 3 | List notifications from Novu. Returns a paginated list of notifications, optionally filtered by channel (e.g., in_app, email, sms, chat, push). |
novu.novu_get_notification | Read read | 1 | Get details of a specific notification in Novu by its ID. Returns the full notification object including status, channel data, and content. |
novu.novu_list_subscribers | Read read | 2 | List subscribers from Novu. Returns a paginated list of all notification subscribers with their details. |
novu.novu_get_subscriber | Read read | 1 | Get details of a specific subscriber in Novu by their ID. Returns the subscriber profile including email, phone, and preferences. |
novu.novu_create_subscriber | Write write | 4 | Create a new subscriber in Novu. Requires an email address. Optionally include first name, last name, and phone number. |
novu.novu_trigger_event | Write write | 3 | Trigger a notification event in Novu. Sends a notification based on a workflow template to one or more subscribers. The "to" field can be a subscriber ID, email address, or an array of recipients. |
novu.novu_get_current_user | Read read | 0 | Get the currently authenticated Novu user. Returns user profile information including name, email, and organization details. |