Skip to content

Agent setup

You can connect any MCP-compatible client that supports remote Streamable HTTP servers and OAuth 2.0.

The examples below use the standard GetResponse endpoint:

https://mcp.getresponse.com/

GetResponse MAX customers must replace this URL with their account-specific MCP endpoint. Enter the selected URL exactly as shown, without adding /mcp.

Authentication is handled through OAuth 2.0. After adding the server, follow the browser-based GetResponse sign-in and authorization flow opened by your client.

Claude

Custom connectors are available on Free, Pro, Max, Team, and Enterprise plans. Free accounts can add one custom connector.

  1. Open Customize > Connectors in Claude.
  2. Select the plus button, then Add custom connector.
  3. Enter your MCP endpoint as the remote MCP server URL and select Add.
  4. Find the GetResponse connector and select Connect, then sign in to GetResponse and authorize the connection.

On Team and Enterprise plans, an Owner must first add the connector under Organization settings > Connectors > Add > Custom > Web. Organization members can then connect to it under Customize > Connectors.

Claude Code

Run the following command in your terminal:

bash
claude mcp add --transport http getresponse https://mcp.getresponse.com/

For a GetResponse MAX account, replace https://mcp.getresponse.com/ with your account-specific endpoint. Start Claude Code, run /mcp, select getresponse, and complete the GetResponse authorization flow.

VS Code

For a standard GetResponse account, use one-click installation.

Run MCP: Add Server from the Command Palette, select HTTP as the server type, enter your MCP endpoint, and choose Global or Workspace as the target.

You can also add the server manually to .vscode/mcp.json:

json
{
  "servers": {
    "getresponse": {
      "type": "http",
      "url": "https://mcp.getresponse.com/"
    }
  }
}

For a GetResponse MAX account, replace the value of url with your account-specific endpoint. When VS Code first connects to the server, complete the GetResponse authorization flow in your browser.

Cursor

For a standard GetResponse account, use one-click installation.

Add the server to .cursor/mcp.json for the current project or ~/.cursor/mcp.json to make it available globally:

json
{
  "mcpServers": {
    "getresponse": {
      "url": "https://mcp.getresponse.com/"
    }
  }
}

For a GetResponse MAX account, replace the value of url with your account-specific endpoint. Open Customize in Cursor, enable the server, and complete the GetResponse authorization flow.

ChatGPT

Developer mode is available to Pro, Plus, Business, Enterprise, and Education accounts on the web.

  1. Open Settings > Security and login and enable Developer mode.
  2. Go to ChatGPT Plugins.
  3. Select the plus button and create a developer-mode app for the remote MCP server. Enter GetResponse as the name, use your MCP endpoint as the server URL, and select OAuth authentication.
  4. Sign in to GetResponse and authorize the app. After it is created, the app appears under Drafts in the app settings.
  5. In a new conversation, open the Plus menu, select Developer mode, and enable the GetResponse app.

The available tools are described on the GetResponse MCP Server page.