email_marketing
GetResponse MCP Integration for Claude Code
Connect GetResponse to Claude Code through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect GetResponse to Claude Code
Connect local KosmoKrator integrations to Claude Code through one scoped MCP gateway entry.
Add KosmoKrator as a stdio MCP server in the Claude Code project config and select the integrations that should be visible. The gateway is local, scoped to this integration, and starts with
--write=deny so Claude Code can inspect read-capable tools without receiving write access by default.
GetResponse MCP Config for Claude Code
Claude Code can launch the local kosmo binary directly from the project MCP config.
{
"mcpServers": {
"kosmokrator-getresponse": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=getresponse",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=getresponse --write=deny Why Use KosmoKrator Here
Expose only GetResponse 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.
GetResponse Tools Visible to Claude Code
Claude Code sees stable MCP tool names generated from the GetResponse integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__getresponse__getresponse_list_contacts | getresponse.getresponse_list_contacts | Read | List contacts in your GetResponse account. Returns paginated results with contact details including email, name, and campaign. |
integration__getresponse__getresponse_get_contact | getresponse.getresponse_get_contact | Read | Get details of a specific contact in GetResponse by its unique identifier. |
integration__getresponse__getresponse_create_contact | getresponse.getresponse_create_contact | Write | Create a new contact in GetResponse. Requires an email address. Optionally set the contact name and assign to a campaign. |
integration__getresponse__getresponse_update_contact | getresponse.getresponse_update_contact | Write | Update an existing contact's details in GetResponse. Provide the contact ID and the fields to update. |
integration__getresponse__getresponse_delete_contact | getresponse.getresponse_delete_contact | Write | Delete a contact from GetResponse. This action is permanent and cannot be undone. |
integration__getresponse__getresponse_list_campaigns | getresponse.getresponse_list_campaigns | Read | List all campaigns in your GetResponse account. Returns campaign IDs and names that can be used when creating contacts. |
integration__getresponse__getresponse_get_campaign | getresponse.getresponse_get_campaign | Read | Get details of a specific campaign in GetResponse by its unique identifier. |
integration__getresponse__getresponse_create_campaign | getresponse.getresponse_create_campaign | Write | Create a new email campaign in GetResponse. Campaigns are used to organize and send emails to contact lists. |
integration__getresponse__getresponse_list_newsletters | getresponse.getresponse_list_newsletters | Read | List newsletters in your GetResponse account. Returns newsletter details including subject, status, and send dates. |
integration__getresponse__getresponse_get_current_user | getresponse.getresponse_get_current_user | Read | Get the authenticated user's account information from GetResponse, including email, name, and account details. |