productivity
GetResponse MCP, CLI, and Lua Integration for AI Agents
GetResponse integration docs for AI agents: MCP gateway setup, GetResponse CLI commands, Lua API reference, credentials, and function schemas.GetResponse 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 |
|---|---|---|---|
getresponse.getresponse_list_contacts | Read read | 2 | List contacts in your GetResponse account. Returns paginated results with contact details including email, name, and campaign. |
getresponse.getresponse_get_contact | Read read | 1 | Get details of a specific contact in GetResponse by its unique identifier. |
getresponse.getresponse_create_contact | Write write | 3 | Create a new contact in GetResponse. Requires an email address. Optionally set the contact name and assign to a campaign. |
getresponse.getresponse_update_contact | Write write | 2 | Update an existing contact's details in GetResponse. Provide the contact ID and the fields to update. |
getresponse.getresponse_delete_contact | Write write | 1 | Delete a contact from GetResponse. This action is permanent and cannot be undone. |
getresponse.getresponse_list_campaigns | Read read | 0 | List all campaigns in your GetResponse account. Returns campaign IDs and names that can be used when creating contacts. |
getresponse.getresponse_get_campaign | Read read | 1 | Get details of a specific campaign in GetResponse by its unique identifier. |
getresponse.getresponse_create_campaign | Write write | 1 | Create a new email campaign in GetResponse. Campaigns are used to organize and send emails to contact lists. |
getresponse.getresponse_list_newsletters | Read read | 0 | List newsletters in your GetResponse account. Returns newsletter details including subject, status, and send dates. |
getresponse.getresponse_get_current_user | Read read | 0 | Get the authenticated user's account information from GetResponse, including email, name, and account details. |