Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
By default, your MCP token grants access to all your tools across every organization you belong to. To restrict the tools your AI systems can access, you can append specific query parameters to the MCP URL address.
https://<MAKE_ZONE>/mcp/api/v1/u/<MCP_TOKEN>/sse?organizationId=<id>
The Agent will see all scenarios within any team under the specified organization.
https://<MAKE_ZONE>/mcp/api/v1/u/<MCP_TOKEN>/sse?teamId=<id>
The Agent will see all scenarios within the specified team.
https://<MAKE_ZONE>/mcp/api/v1/u/<MCP_TOKEN>/sse?scenarioId=<id>
The Agent will only see the specified scenario.
You can also specify multiple values for each of the entities above using the following syntax:
?scenarioId[]=<id1>&scenarioId[]=<id2>
At the moment, these parameters are mutually exclusive and cannot be combined.
Prerequisites
NodeJS
Claude Desktop App
Make MCP token
To use this server with the Claude Desktop app, open the Settings dialog and navigate to the Developer section. By clicking Edit Config, you’ll be directed to the folder containing the claude_desktop_config.json
file.
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:
Configuration example:
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.
To obtain the MCP Token, navigate to the API / MCP access section in your Make user profile. Click Add token and select MCP Token as the type. Choose a label for your MCP Token and click Add.
You’ll receive a unique URL that can be used to configure your MCP client. This URL includes a secret key, so please treat it as sensitive information and share it only with trusted parties.
Make MCP server enable seamless integration of Make scenarios into AI systems such as AI Assistants and Agents, empowering them to perform real-world tasks through your pre-configured workflows.
Benefits
Turn your Make scenarios into callable tools for your AI
Maintain complex automation logic in Make while exposing functionality to your AI
Create bidirectional communication between your AI and your existing automation workflows
Make MCP Server is available on all subscription plans, including the free plan.
Make MCP Server lists all your scenarios scheduled to run "On Demand" as tools available to your AI. Each scenario can be configured with:
Inputs: parameters that your AI will fill with data when the scenario runs
Outputs: data that will be returned from the scenario back to your AI
We currently allow two possible ways how to integrate Make MCP server:
Cloud-based MCP Server, hosted by Make, that runs via SSE (Server-Sent Events), suitable for any integrations and environments.
Basic MCP server version that you are able to run locally on your machine, ideal for scenarios that require local management and control and also when you know what you are doing.
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.
At least one available Make scenario with "On Demand" scheduling
MCP-compatible client (e.g., Cursor App or Claude Desktop App).
If your client supports SSE, use the following endpoint:
Configuration example:
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.
If your client supports sending authorization in HTTP headers, you can use the following URL:
With the MCP token specified in the Authorization header as follows:
Configuration example:
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.
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.
Prerequisites
Cursor App
Make MCP Token
To use this server with the Cursor app, open the Cursor Settings dialog and navigate to the MCP section. By clicking Add new global MCP server you’ll open an editor for the mcp.json
file.
Use the SSE endpoint with the token embedded directly in the URL:
Configuration example:
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.
Prerequisites
NodeJS
Claude Desktop App
Make API Key with scenarios:read
andscenarios:run
scopes
To use this server with the Claude Desktop app, open the Settings dialog and navigate to the Developer section. By clicking Edit Config, you’ll be directed to the folder containing the claude_desktop_config.json
file.
Add the following configuration to the mcpServers
section of your claude_desktop_config.json
:
MAKE_API_KEY
- You can generate an API key in your Make profile.
MAKE_ZONE
- The zone your organization is hosted in (e.g., eu2.make.com
).
MAKE_TEAM
- You can find the ID in the URL of the Team page.
Make MCP Token ()
To control which tools are visible to your AI with more granularity, you can follow the guide.
Use the Cloudflare mcp-remote
proxy for compatibility. Refer to for more details.
To control which tools are visible to your AI with more granularity, you can follow the guide.
Features
Connects to your Make account to identify all "On Demand" scenarios.
Automatically parses scenario input parameters, enabling AI assistants to understand and utilize scenarios effectively.
Facilitates scenario invocation with validated parameters.
Returns structured JSON output from scenarios (currently available in closed beta).
Make API Key with scenarios:read
and scenarios:run
scopes
At least one available Make scenario with "On Demand" scheduling
MCP-compatible client (e.g., Claude Desktop App).
Add the following configuration to the mcpServers
section in your MCP client's configuration file (claude_desktop_config.json
for Claude Desktop):
Replace placeholders:
MAKE_API_KEY
: Generate from your Make.com profile.
MAKE_ZONE
: Your Make organization zone (e.g., eu2.make.com
).
MAKE_TEAM
: Obtainable from your team's page URL on Make.com.
Local version of Make MCP server should be used only for advanced cases. For most cases it is preferred to use instead.