Make
About
Turn your [Make](https://www.make.com/) scenarios into callable tools for AI assistants.
Details
- Author
- integromat
- Repository
- integromat/make-mcp-server
- GitHub stars
- 71
- Downloads
- 21
- License
- MIT License
- Transport
- SSE
- Categories
- Productivity, Automation, API, Developer Tools, Other
Jump to
- Connects to Make account and identifies On-Demand scenarios
- Parses and resolves input parameters for each scenario
- Allows AI assistants to invoke scenarios with appropriate parameters
- Returns scenario output as structured JSON
- Enables bidirectional communication between AI and automation workflows
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
MakeCommand (node, npx, python, etc.)npxArguments-
Argument 1
-y -
Argument 2
@makehq/mcp-server
Environment-
MAKE_TEAM
<your-team-id> -
MAKE_ZONE
<your-zone> -
MAKE_API_KEY
<your-api-key>
Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
-
Argument 1
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
To use this server with the Claude Desktop app, add the following configuration to the "mcpServers" section of your claude_desktop_config.json:
{
"mcpServers": {
"make": {
"command": "npx",
"args": ["-y", "@makehq/mcp-server"],
"env": {
"MAKE_API_KEY": "<your-api-key>",
"MAKE_ZONE": "<your-zone>",
"MAKE_TEAM": "<your-team-id>"
}
}
}
}
- 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.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"make": {
"env": {
"MAKE_TEAM": "<your-team-id>",
"MAKE_ZONE": "<your-zone>",
"MAKE_API_KEY": "<your-api-key>"
},
"args": [
"-y",
"@makehq/mcp-server"
],
"command": "npx"
}
}
}
Linux
{
"env": {
"MAKE_TEAM": "<your-team-id>",
"MAKE_ZONE": "<your-zone>",
"MAKE_API_KEY": "<your-api-key>"
},
"args": [
"-y",
"@makehq/mcp-server"
],
"command": "npx"
}
Macos
{
"env": {
"MAKE_TEAM": "<your-team-id>",
"MAKE_ZONE": "<your-zone>",
"MAKE_API_KEY": "<your-api-key>"
},
"args": [
"-y",
"@makehq/mcp-server"
],
"command": "npx"
}
Windows
{
"env": {
"MAKE_TEAM": "<your-team-id>",
"MAKE_ZONE": "<your-zone>",
"MAKE_API_KEY": "<your-api-key>"
},
"args": [
"/c",
"npx",
"-y",
"@makehq/mcp-server"
],
"command": "cmd"
}
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.


