The Make MCP Server is a Model Context Protocol server designed to enable Make scenarios to be utilized as tools by AI assistants. This integration allows AI systems to trigger and interact with your Make automation workflows, creating a seamless connection between AI and automation.
The MCP server performs the following functions:
- Connects to your Make account and identifies all scenarios configured with "On-Demand" scheduling.
- Parses and resolves input parameters for each scenario, providing AI assistants with meaningful parameter descriptions.
- Allows AI assistants to invoke scenarios with appropriate parameters.
- Returns scenario output (currently in closed beta) as structured JSON, enabling AI assistants to properly interpret the results.
To use the Make MCP Server with the Claude Desktop app, ensure you have the following:
- NodeJS installed.
- MCP Client (like Claude Desktop App).
- Make API Key with scenarios:read
and scenarios:run
scopes.
To configure the server with the Claude Desktop app, add the following 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
: Generate this in your Make profile.MAKE_ZONE
: The zone your organization is hosted in (e.g., eu2.make.com
).MAKE_TEAM
: Find this ID in the URL of the Team page.The Make MCP Server is part of the Integromat ecosystem, enabling advanced integration between AI tools and automation workflows.
This project is licensed under the MIT license.