Usage with Claude Desktop

This article outlines how to integrate the cloud-based Make MCP server with Claude Desktop.

Prerequisites

Installation

To use the cloud-based server with Claude Desktop:

  1. Open your Claude Desktop account.

  2. Click on the hamburger menu in the upper left-hand corner.

  3. Click File.

  4. Click Settings, which opens a dialog box.

  5. Navigate to the Developer section.

  6. Click Edit Config, which takes you to the folder containing the claude_desktop_config.json file.

  1. Add the following configuration to the mcpServers section of your claude_desktop_config.json. Use the SSE endpoint with the token embedded directly in the URL:

https://<MAKE_ZONE>/mcp/api/v1/u/<MCP_TOKEN>/sse

Configuration example:

{
  "mcpServers": {
    "make": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://<MAKE_ZONE>/mcp/api/v1/u/<MCP_TOKEN>/sse"
      ]
    }
  }
}
  1. Replace <MAKE_ZONE> and <MCP_TOKEN> with your actual values.

  • MAKE_ZONE - The zone your organization is hosted in (e.g., eu2.make.com).

  • MCP_TOKEN - You can generate your MCP token in your Make profile.

Last updated