KosmoKrator

email

MailerLite MCP Gateway for AI Agents

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

8 functions 4 read 4 write API key auth

MailerLite MCP Gateway

Expose MailerLite to MCP clients with `kosmokrator mcp:serve --integration=mailerlite`.

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=mailerlite --write=deny --json
{
  "mcpServers": {
    "kosmokrator-mailerlite": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=mailerlite",
        "--write=deny"
      ]
    }
  }
}

Serve Manually

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

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP toolSource functionType
integration__mailerlite__mailerlite_list_subscribers mailerlite.mailerlite_list_subscribers Read read
integration__mailerlite__mailerlite_get_subscriber mailerlite.mailerlite_get_subscriber Read read
integration__mailerlite__mailerlite_create_subscriber mailerlite.mailerlite_create_subscriber Write write
integration__mailerlite__mailerlite_update_subscriber mailerlite.mailerlite_update_subscriber Write write
integration__mailerlite__mailerlite_delete_subscriber mailerlite.mailerlite_delete_subscriber Write write
integration__mailerlite__mailerlite_list_groups mailerlite.mailerlite_list_groups Read read
integration__mailerlite__mailerlite_add_subscriber_to_group mailerlite.mailerlite_add_subscriber_to_group Write write
integration__mailerlite__mailerlite_get_current_user mailerlite.mailerlite_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.