marketing
Unbounce MCP Integration for OpenAI Agents SDK
Connect Unbounce to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Unbounce 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.
Unbounce MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-unbounce": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=unbounce",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=unbounce --write=deny Why Use KosmoKrator Here
Expose only Unbounce 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.
Unbounce Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Unbounce integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__unbounce__unbounce_list_pages | unbounce.unbounce_list_pages | Read | List landing pages in Unbounce. Returns page IDs, names, URLs, and metadata. Use this to discover available pages before querying leads or page details. |
integration__unbounce__unbounce_get_page | unbounce.unbounce_get_page | Read | Get details of a specific Unbounce landing page by its ID. Returns the page name, URL, variants, conversion rates, and other metadata. |
integration__unbounce__unbounce_list_leads | unbounce.unbounce_list_leads | Read | List form submissions (leads) for a specific Unbounce landing page. Returns lead data including form field values, submission timestamps, and conversion details. |
integration__unbounce__unbounce_get_lead | unbounce.unbounce_get_lead | Read | Get details of a specific Unbounce lead (form submission) by its ID. Returns all submitted form field values, metadata, and conversion information. |
integration__unbounce__unbounce_list_sub_accounts | unbounce.unbounce_list_sub_accounts | Read | List sub-accounts in Unbounce. Sub-accounts group pages and are useful for organizing landing pages by client, brand, or campaign. |
integration__unbounce__unbounce_get_current_user | unbounce.unbounce_get_current_user | Read | Get the currently authenticated Unbounce user profile. Returns account name, email, and other account details. |