productivity
Kajabi MCP Integration for OpenAI Agents SDK
Connect Kajabi to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Kajabi to OpenAI Agents SDK
Attach KosmoKrator integration tools to OpenAI Agents SDK workflows through a local MCP gateway.
Start the KosmoKrator MCP gateway locally and point the OpenAI Agents SDK MCP tool at that process or wrapper. The gateway is local, scoped to this integration, and starts with
--write=deny so OpenAI Agents can inspect read-capable tools without receiving write access by default.
Kajabi MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-kajabi": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=kajabi",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=kajabi --write=deny Why Use KosmoKrator Here
Expose only Kajabi instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Kajabi Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Kajabi integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__kajabi__kajabi_list_offers | kajabi.kajabi_list_offers | Read | List all offers in your Kajabi account. Returns offer names, IDs, prices, and associated products. |
integration__kajabi__kajabi_get_offer | kajabi.kajabi_get_offer | Read | Get detailed information about a single Kajabi offer by its ID. Returns full offer data including title, price, and associated product details. |
integration__kajabi__kajabi_list_products | kajabi.kajabi_list_products | Read | List all products (courses, coaching programs, memberships) in your Kajabi account. Returns product names, IDs, types, and metadata. |
integration__kajabi__kajabi_get_product | kajabi.kajabi_get_product | Read | Get detailed information about a single Kajabi product by its ID. Returns full product data including description, pricing, and content details. |
integration__kajabi__kajabi_list_members | kajabi.kajabi_list_members | Read | List all members in your Kajabi account. Returns member names, emails, status, and enrollment details. |
integration__kajabi__kajabi_get_member | kajabi.kajabi_get_member | Read | Get detailed information about a single Kajabi member by their ID. Returns member profile, email, status, and enrollment details. |
integration__kajabi__kajabi_get_current_user | kajabi.kajabi_get_current_user | Read | Get the profile of the currently authenticated Kajabi user. Useful to verify the connection and see account details. |