Make Cloud MCP Server

Features

  • Allows integration with Make scenarios through SSE endpoints.

  • Ideal for cloud-based solutions or setups without direct server access.

  • Supports scenarios execution remotely via Make infrastructure.

Prerequisites

  • Make MCP Token (see Obtaining MCP Token)

  • At least one available Make scenario with "On Demand" scheduling

  • MCP-compatible client (e.g., Cursor App or Claude Desktop App).

Installation and Usage

Client with SSE Support (e.g., Cursor)

If your client supports SSE, use the following endpoint:

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

Configuration example:

{
  "mcpServers": {
    "make": {
      "url": "https://<MAKE_ZONE>/mcp/api/v1/u/<MCP_TOKEN>/sse"
    }
  }
}

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.

Client with Authorization in Headers Support

If your client supports sending authorization in HTTP headers, you can use the following URL:

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

With the MCP token specified in the Authorization header as follows:

Authorization: Bearer <MCP_TOKEN>

Clients without SSE Support (e.g., Claude Desktop)

Use the Cloudflare mcp-remote proxy for compatibility. Refer to Cloudflare's MCP Remote Proxy Guide for more details.

Configuration example:

{
  "mcpServers": {
    "make": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://<MAKE_ZONE>/mcp/api/v1/u/<MCP_TOKEN>/sse"
      ]
    }
  }
}

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.

Advanced Parameters

Additionally, you can append the following advanced query parameters to the MCP URL for an even more customized experience.

  • ?maxToolNameLength=<length> — To ensure compatibility with the majority of AI systems, generated tool names are automatically cropped to a maximum of 56 characters. You can customize this behavior by specifying the maximum length of the generated tool name using this parameter. The allowed range is from 32 to 160 characters.

Last updated