Skip to main content

Overview

Kaireon provides an MCP (Model Context Protocol) server that exposes platform capabilities to AI development tools like Claude Code, Cursor, and other MCP-compatible clients.

Starting the Server

npm run mcp
This starts the MCP server at the default port, exposing tools for interacting with the Kaireon platform programmatically.

Available Tools

The MCP server exposes the same tool set as the built-in AI assistant:
  • Data tools — Schema, pipeline, and connector management
  • Studio tools — Offer, flow, channel, and rule management
  • Algorithm tools — Model and experiment management
  • Content tools — Content item and template management

Integration with AI Editors

Claude Code

Add to your Claude Code MCP configuration:
{
  "mcpServers": {
    "kaireon": {
      "command": "npm",
      "args": ["run", "mcp"],
      "cwd": "/path/to/platform"
    }
  }
}

Cursor

Add to your Cursor MCP settings following the same pattern. The MCP server communicates via stdio.

Use Cases

  • AI-assisted development — Let your AI coding assistant understand and modify your Kaireon configuration
  • Automation — Script platform operations through MCP-compatible tools
  • Testing — Use AI tools to generate test data and validate configurations