email_marketing
GetResponse MCP Integration for Vercel AI SDK
Connect GetResponse to Vercel AI SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect GetResponse to Vercel AI SDK
Use KosmoKrator as a local integration gateway for Vercel AI SDK agents and scripts.
Create an MCP client that starts or connects to the KosmoKrator gateway for the selected integration. The gateway is local, scoped to this integration, and starts with
--write=deny so Vercel AI SDK can inspect read-capable tools without receiving write access by default.
GetResponse MCP Config for Vercel AI SDK
Prefer CLI JSON calls when a workflow only needs one deterministic integration operation.
{
"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 Vercel AI SDK
Vercel AI SDK 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. |