KosmoKrator

communication

Novu MCP Gateway for AI Agents

Expose Novu tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.

7 functions 5 read 2 write API key auth

Novu MCP Gateway

Expose Novu to MCP clients with `kosmokrator mcp:serve --integration=novu`.

If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server. The gateway exposes only the selected integration in the example below.

curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash
kosmokrator mcp:gateway:install --integration=novu --write=deny --json
{
  "mcpServers": {
    "kosmokrator-novu": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=novu",
        "--write=deny"
      ]
    }
  }
}

Serve Manually

kosmokrator mcp:serve --integration=novu --write=deny

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP toolSource functionType
integration__novu__novu_list_notifications novu.novu_list_notifications Read read
integration__novu__novu_get_notification novu.novu_get_notification Read read
integration__novu__novu_list_subscribers novu.novu_list_subscribers Read read
integration__novu__novu_get_subscriber novu.novu_get_subscriber Read read
integration__novu__novu_create_subscriber novu.novu_create_subscriber Write write
integration__novu__novu_trigger_event novu.novu_trigger_event Write write
integration__novu__novu_get_current_user novu.novu_get_current_user Read read

Write Access

Start with --write=deny for read-only MCP clients. Use --write=ask or --write=allow only when the client and workspace are trusted.