Make MCP Server enables AI assistants to interact with Make automation scenarios as tools. This integration creates a bridge between AI systems and your existing Make workflows, allowing assistants to trigger scenarios and process their results. By exposing your Make scenarios as callable tools, you can leverage complex automation logic while maintaining it in a familiar environment.
Make MCP Server creates a seamless connection between AI assistants and your Make automation platform (formerly Integromat). This integration allows AI systems to discover, invoke, and process results from your Make scenarios, effectively turning your automation workflows into AI-callable tools.
Before setting up the Make MCP Server, you'll need:
scenarios:read
and scenarios:run
scopesTo use the Make MCP Server with Claude Desktop or other compatible clients, you'll need to add configuration to your client's settings.
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>"
}
}
}
}
Replace the placeholder values with your specific information:
<your-api-key>
: Your Make API key (generated in your Make profile)<your-zone>
: The zone your organization is hosted in (e.g., eu2.make.com
)<your-team-id>
: Your team ID (found in the URL of the Team page in Make)The Make MCP Server performs several key functions:
Scenario Discovery: The server connects to your Make account and identifies all scenarios configured with "On-Demand" scheduling.
Parameter Resolution: It parses and resolves input parameters for each scenario, providing AI assistants with meaningful parameter descriptions.
Invocation: When an AI assistant calls a scenario, the server passes the appropriate parameters to Make.
Result Processing: The server returns scenario output as structured JSON, enabling AI assistants to properly interpret and use the results.
If you encounter issues:
For more detailed information, visit the official documentation.