productivity
Unbounce MCP, CLI, and Lua Integration for AI Agents
Unbounce integration docs for AI agents: MCP gateway setup, Unbounce CLI commands, Lua API reference, credentials, and function schemas.Unbounce for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
unbounce.unbounce_get_api_metadata | Read read | 0 | Retrieve Unbounce API root metadata and related resource links. |
unbounce.unbounce_list_accounts | Read read | 1 | List Unbounce accounts available to the authenticated token. |
unbounce.unbounce_get_account | Read read | 1 | Get one Unbounce account by ID. |
unbounce.unbounce_list_sub_accounts | Read read | 3 | List sub-accounts in Unbounce. Sub-accounts group pages and are useful for organizing landing pages by client, brand, or campaign. |
unbounce.unbounce_get_sub_account | Read read | 1 | Get one Unbounce sub-account by ID. |
unbounce.unbounce_list_pages | Read read | 3 | List landing pages in Unbounce. Returns page IDs, names, URLs, and metadata. Use this to discover available pages before querying leads or page details. |
unbounce.unbounce_list_account_pages | Read read | 2 | List landing pages for a specific Unbounce account. |
unbounce.unbounce_list_sub_account_pages | Read read | 2 | List landing pages for a specific Unbounce sub-account. |
unbounce.unbounce_get_page | Read read | 1 | Get details of a specific Unbounce landing page by its ID. Returns the page name, URL, variants, conversion rates, and other metadata. |
unbounce.unbounce_list_page_form_fields | Read read | 1 | List form fields for an Unbounce page. |
unbounce.unbounce_list_leads | Read read | 3 | List form submissions (leads) for a specific Unbounce landing page. Returns lead data including form field values, submission timestamps, and conversion details. |
unbounce.unbounce_get_lead | Read read | 1 | Get details of a specific Unbounce lead (form submission) by its ID. Returns all submitted form field values, metadata, and conversion information. |
unbounce.unbounce_create_lead | Write write | 2 | Create a lead for an Unbounce page using the official lead payload. |
unbounce.unbounce_create_lead_deletion_request | Write write | 2 | Create a lead deletion request for an Unbounce page. |
unbounce.unbounce_get_lead_deletion_request | Read read | 2 | Get a lead deletion request by page and request ID. |
unbounce.unbounce_list_domains | Read read | 2 | List domains for an Unbounce sub-account. |
unbounce.unbounce_get_domain | Read read | 1 | Get one Unbounce domain by ID. |
unbounce.unbounce_list_domain_pages | Read read | 2 | List pages published on an Unbounce domain. |
unbounce.unbounce_list_page_groups | Read read | 2 | List page groups for an Unbounce sub-account. |
unbounce.unbounce_get_page_group | Read read | 1 | Get one Unbounce page group by ID. |
unbounce.unbounce_list_page_group_pages | Read read | 2 | List pages in an Unbounce page group. |
unbounce.unbounce_get_current_user | Read read | 0 | Get the currently authenticated Unbounce user profile. Returns account name, email, and other account details. |
unbounce.unbounce_api_get | Read read | 2 | Call a safe relative Unbounce API path with GET. |
unbounce.unbounce_api_post | Write write | 3 | Call a safe relative Unbounce API path with POST. |
unbounce.unbounce_api_delete | Write write | 2 | Call a safe relative Unbounce API path with DELETE. |