Best for
- Developers who want to integrate Make automations with AI assistants.
- Users who need to quickly turn existing Make scenarios into callable tools.
This server exposes Make scenarios as AI-callable tools, suitable for integrating existing automations. Being legacy, the official recommendation is the new cloud version.
Make MCP Server (legacy) is a Model Context Protocol server that enables Make scenarios to be utilized as tools by AI assistants. It connects to your Make account, identifies all scenarios configured with 'On-Demand' scheduling, parses input parameters, and allows AI assistants to invoke scenarios with appropriate parameters. Scenario output is returned as structured JSON, enabling proper interpretation by AI.
Prerequisites: NodeJS, MCP client (like Claude Desktop), Make API key with scenarios:read and scenarios:run scopes.
Add the example configuration to the mcpServers section of claude_desktop_config.json, and replace environment variables: MAKE_API_KEY generated in Make profile; MAKE_ZONE is the zone your organization is hosted in (e.g., eu2.make.com); MAKE_TEAM ID found in the URL of the Team page.
{
"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>"
}
}
}
}