communication
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.
7 functions 5 read 2 write API key auth
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.
Machine-Readable Metadata
- integration_slug
novu- route_slug
novu- package
novu- auth_strategy
api_keyAPI key- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Novu CLIHeadless setup and direct function calls. Novu MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Novu MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Novu.
Claude Code Novu MCP setup for Claude Code. Cursor Novu MCP setup for Cursor. Codex Novu MCP setup for Codex. OpenAI Agents Novu MCP setup for OpenAI Agents SDK. Claude Agent SDK Novu MCP setup for Claude Agent SDK. Vercel AI SDK Novu MCP setup for Vercel AI SDK. LangChain Novu MCP setup for LangChain. LangGraph Novu MCP setup for LangGraph. CrewAI Novu MCP setup for CrewAI. MCP clients Novu MCP setup for Generic MCP Clients.
Novu CLI Matrix
Use these pages for direct Novu CLI workflows in scripts, CI, cron, and agent wrappers.
CI Novu CLI for CI. Cron Jobs Novu CLI for cron jobs. Shell Scripts Novu CLI for shell scripts. Headless Automation Novu CLI for headless automation. Coding Agents Novu CLI for coding agents.
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. |