Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Make MCP server allows external AI systems, such as AI agents, to run your scenarios and manage the contents of your Make account. Model Context Protocol (MCP) is a communication standard between AI systems and external systems. It enables them to easily and safely interact by defining endpoints and providing authentication.
Benefits
Creates bidirectional communication between AI and Make
Allows AI to access and manage elements of your Make account
Turns your active and on-demand scenarios into callable tools for AI
Make MCP server gives external AI systems access to scenario run and management tools that enable the following capabilities:
Run active and on-demand scenarios
View and modify scenarios and their related entities (e.g., connections, webhooks, and data stores)
View and modify teams and organizations
When connecting Make MCP server to an AI system, you select the scopes to determine the tools available to the system.
When connecting to Make MCP server, note that the use of scenarios as tools is available to all plans, and management tools are available to paid plans.
Inputs and outputs
If you're using scenarios as tools, you can help AI understand what data to receive and send by configuring scenario inputs and outputs:
Inputs: parameters your AI fills with data when the scenario runs
Outputs: data returned from the scenario to your AI
Make MCP server is a cloud-based server hosted by Make, running via Server-Sent Events (SSE) and Streamable HTTP.
If your MCP client supports SSE, use the following connection URLs, depending on your connection type:
If your MCP client does not support SSE, use the Cloudflare mcp-remote proxy for compatibility. Refer to Cloudflare's MCP Remote Proxy Guide for more details.
If your MCP client supports Streamable HTTP, use /stream instead of /sse at the end of the connection URL specified for your chosen connection type (OAuth or MCP token).
This article outlines how to connect Make MCP server with Cursor using an MCP token.
Prerequisites
Cursor account (Desktop version)
To connect Make MCP server to Cursor:
Open your Cursor account.
On the upper right-hand side, click the gear icon to open the Cursor Settings dialog.
In the left sidebar, click Tools & Integrations (or Tools, if you're on the Free Plan).
Under MCP Tools, click Add Custom MCP to open the editor for the mcp.json file.
In the editor, add the configuration.
Use the following URL, with your zone and MCP token embedded in the URL:
https://<MAKE_ZONE>/mcp/api/v1/u/<MCP_TOKEN>/sseConfiguration example:
{
"mcpServers": {
"make": {
"url": "https://<MAKE_ZONE>/mcp/api/v1/u/<MCP_TOKEN>/sse"
}
}
}For Streamable HTTP, use /stream instead of /sse at the end of your connection URL.
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.
You have now connected Make MCP server to Cursor.
By default, the mcp:use scope of your MCP token allows AI systems to access all active and on-demand scenarios across all of your Make organizations. To restrict access, you can append query parameters to the connection URL according to these levels: organization, team, and scenario.
Scenarios must be active with on-demand scheduling to be used as MCP tools.
The following MCP token access control applies to scenario tools only. It does not restrict access to management tools and other tool types.
https://<MAKE_ZONE>/mcp/api/v1/u/<MCP_TOKEN>/sse?organizationId=<id>
The AI system can see all scenarios in any team within the specified organization.
https://<MAKE_ZONE>/mcp/api/v1/u/<MCP_TOKEN>/sse?teamId=<id>
The AI system can see all scenarios within the specified team.
https://<MAKE_ZONE>/mcp/api/v1/u/<MCP_TOKEN>/sse?scenarioId=<id>
The AI system can 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>
Currently, these levels are mutually exclusive and can't be combined.
This article outlines how to connect Make MCP server with OpenAI using an MCP token.
Prerequisites
OpenAI Platform account
To connect Make MCP server to OpenAI:
In OpenAI's Playground, sign in to your OpenAI account.
Navigate to Prompts.
In Tools, click the + button.
Select MCP Server.
In the dialog, click Add new to display the form below.
In URL, add the following URL:
https://<MAKE_ZONE>/mcp/api/v1/u/sseReplace <MAKE_ZONE> with your actual values.
MAKE_ZONE - The zone your organization is hosted in (e.g., eu2.make.com).
In Label, name your Make MCP server.
In Authentication, select Access token / API key.
Add your MCP token to the field that requires an access token.
Click Connect.
You have now connected Make MCP server to OpenAI.

This article outlines how to connect Make MCP server with Claude Desktop using OAuth.
Prerequisites
Claude Desktop account (paid subscription)
To connect Make MCP server to Claude Desktop:
Open your Claude Desktop account.
Click your profile name on the left sidebar, then Settings.
In Settings, navigate to Connectors.
Click Add custom connector, which opens a dialog.
In the URL field, add the following URL:
https://mcp.make.com/sseIn Connectors, find Make and click Connect.
In the OAuth consent screen, select the organization in Organization and its granted scopes.
Click Allow to proceed.
You've now connected Make MCP server to Claude Desktop.
This article outlines how to connect Make MCP server with Vapi.
Prerequisites
Vapi account
To connect Make MCP server to Vapi:
Open your Vapi account.
Navigate to Tools on the left sidebar.
Click the Create Tool button, then select MCP.
Configure the tool name and describe when to use the tool.
In Server URL, add the following URL:
https://<MAKE_ZONE>/mcp/api/v1/u/<MCP_TOKEN>/sseReplace <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.
Optionally, to control which scenarios are available as tools, you can further configure the URL according to the levels outlined in scenarios as tools access control.
In Timeout, enter an appropriate timeout for your use case.
In MCP Settings, select Server-Sent Events (SSE) or Streamable HTTP.
Click Save.
You have now connected Make MCP server to Vapi.
MCP Tool calls from Vapi Assistants may exceed Make API rate limits, resulting in rate limit errors. Check your Make API rate limit, as defined in your plan, in Make API rate limits.


You can connect Make MCP server using an MCP token in the connection URL. An MCP token is an API token that you create in Make for adding Make MCP server to an MCP client.
To obtain an MCP token:
At the bottom of the left sidebar in your Make account, click your name.
Click Profile.
Navigate to the API access tab.
In Tokens, click Add token, which opens a dialog.
Select your desired scopes, including the mcp:use scope if you want to make your scenarios available as tools.
In Label, name your API token.
Click Add.
You have now generated an MCP token for your MCP client. You will include this token in the connection URL.
An MCP token is a secret key; treat it as sensitive information and share it only with trusted parties.
To complete the connection, refer to the Usage page of your MCP client (e.g., Usage with Cursor).
To control which scenarios are available as tools through your MCP token, see Scenarios as tools access control.

For Streamable HTTP, use /stream instead of /sse at the end of your connection URL.
For Streamable HTTP, use /stream instead of /sse at the end of your connection URL.
For Streamable HTTP, use /stream instead of /sse at the end of your connection URL.
For Streamable HTTP, use /stream instead of /sse at the end of your connection URL.
You can connect Make MCP server to MCP clients using OAuth. OAuth is recommended due to its simple and secure setup. Its single universal URL eliminates the need to configure the URL with an MCP token.
To connect Make MCP server using OAuth, use this URL:
https://mcp.make.com/sseWhile connecting Make MCP server with an MCP client, you will select the organization and granted scopes in the OAuth consent screen. Scopes determine the tools available to the MCP client.
Consent screen example:
The Run your scenarios scope provides access to all on-demand and active scenarios within a specific organization. For more granular control, a Teams plan allows you to limit access to scenarios within specific teams in your organization.
To complete the connection, refer to the Usage page of your MCP client (e.g., Usage with Cursor).

This article outlines how to connect Make MCP server with Cursor using OAuth.
Prerequisites
Cursor account (Desktop version)
To connect Make MCP server to Cursor:
Open your Cursor account.
On the upper right-hand side, click the gear icon to open the Cursor Settings dialog.
In the left sidebar, click Tools & Integrations (or Tools, if you're on the Free Plan).
Under MCP Tools, click Add Custom MCP to open the editor for the mcp.json file.
In the editor, add the configuration.
Use the following URL:
https://mcp.make.com/sseConfiguration example:
{
"mcpServers": {
"make": {
"url": "https://mcp.make.com/sse"
}
}
}In MCP Tools, you'll see Make added as an MCP tool. Click Needs login.
In the dialog, click Open, which takes you to an OAuth consent screen.
In the Organization dropdown, select the organization that can access the server.
Select its granted scopes.
Click Allow, then Open Cursor.
Click Open to allow the extension to open the URI.
You have now connected Make MCP server to Cursor.


This article outlines how to connect Make MCP server with Claude Desktop using an MCP token.
Prerequisites
Claude Desktop account (paid subscription)
To connect Make MCP server to Claude Desktop:
Open your Claude Desktop account.
Click your profile name on the left sidebar, then Settings.
In Settings, navigate to Connectors.
Click Add custom connector, which opens a dialog.
In the URL field, add the following URL:
https://<MAKE_ZONE>/mcp/api/v1/u/<MCP_TOKEN>/sseReplace <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.
Click Add.
You have connected Make MCP server to Claude Desktop.

This article outlines how to connect Make MCP server with ChatGPT using an MCP token.
Prerequisites
ChatGPT account (paid subscription)
To connect Make MCP server to ChatGPT:
Open the web version of ChatGPT.
Click on your profile name on the left sidebar.
Click Settings to open the settings dialog.
Navigate to the Connectors section, then to Advanced settings.
In Advanced settings, enable Developer mode.
Return to Connectors, and click the Create button that is now visible in the top-right corner.
In the New Connector dialog, name your MCP server.
In the MCP Server URL field, add the following URL:
https://<MAKE_ZONE>/mcp/api/v1/u/<MCP_TOKEN>/sseReplace <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 API token in your Make profile.
In the Authentication dropdown, select No authentication.
Select the I trust this application checkbox.
Click the Create button.
You have now connected Make MCP server to ChatGPT. In Connectors, you can click on it to expand its details and select which tools ChatGPT can use.
After adding Make MCP server, you can enable it in the chat:
Open a new chat in ChatGPT.
In the left-hand corner of the message bar, click the + sign to open a dropdown.
Click More, then Developer Mode.
Click Add sources.
Enable Make MCP server.




This article outlines how to connect Make MCP server with ChatGPT using OAuth.
Prerequisites
ChatGPT account (paid subscription)
To connect Make MCP server to ChatGPT:
Open the web version of ChatGPT.
Click on your profile name on the left sidebar.
Click Settings to open the settings dialog.
Navigate to the Connectors section, then to Advanced settings.
In Advanced settings, enable Developer mode.
Return to Connectors, and click the Create button that is now visible.
In the New Connector dialog, name your MCP server.
In the MCP Server URL field, add the following URL:
https://mcp.make.com/sseIn the Authentication dropdown, select OAuth.
Select the I trust this application checkbox.
Click the Create button.
In the OAuth consent screen, select your organization and its granted scopes.
Click Allow.
You have now connected Make MCP server to ChatGPT. In Connectors, you can click on it to expand its details and select which tools ChatGPT can use.
After adding Make MCP server, you can enable it in the chat:
Open a new chat in ChatGPT.
In the left-hand corner of the message bar, click the + sign to open a dropdown.
Click More, then Developer Mode.
Click Add sources.
Enable Make MCP server.
You have now enabled Make MCP server in the chat, allowing ChatGPT to use Make tools when interacting with you.




For Streamable HTTP, use /stream instead of /sse at the end of your connection URL.
For Streamable HTTP, use /stream instead of /sse at the end of your connection URL.
For Streamable HTTP, use /stream instead of /sse at the end of your connection URL.
For Streamable HTTP, use /stream instead of /sse at the end of your connection URL.
For Streamable HTTP, use /stream instead of /sse at the end of your connection URL.
This article outlines how to connect Make MCP server with the OpenAI API.
Prerequisites
To add Make MCP server through the OpenAI API:
Configure your API call as follows:
curl https://api.openai.com/v1/responses \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-d '{
"model": "gpt-4.1",
"input": "List all available tools.",
"tools": [
{
"type": "mcp",
"server_label": "make",
"server_url": "https://<MAKE_ZONE>/mcp/api/v1/sse",
}
]
}'For Streamable HTTP, use /stream instead of /sse at the end of your connection URL.
Replace <MAKE_ZONE> with your actual values.
MAKE_ZONE - The zone your organization is hosted in (e.g., eu2.make.com).
You have now added Make MCP server through the OpenAI API.