A modern, cloud-based version of the Make MCP Server is now available. For most use cases, we recommend using this new version. A Model Context Protocol server that enables Make scenarios to be utilized as tools by AI assistants. This integration allows AI systems to trigger and interact with your Make automation workflows. The MCP server: - Connects to your Make account and identifies all scenari
Add this skill
npx mdskills install integromat/make-mcp-serverBridges Make automation workflows to AI assistants with clear setup but overly broad permissions
1# Make MCP Server (legacy)23**A modern, cloud-based version of the Make MCP Server is now available. For most use cases, we recommend using [this new version](https://developers.make.com/mcp-server).**45A Model Context Protocol server that enables Make scenarios to be utilized as tools by AI assistants. This integration allows AI systems to trigger and interact with your Make automation workflows.67## How It Works89The MCP server:1011- Connects to your Make account and identifies all scenarios configured with "On-Demand" scheduling12- Parses and resolves input parameters for each scenario, providing AI assistants with meaningful parameter descriptions13- Allows AI assistants to invoke scenarios with appropriate parameters14- Returns scenario output as structured JSON, enabling AI assistants to properly interpret the results1516## Benefits1718- Turn your Make scenarios into callable tools for AI assistants19- Maintain complex automation logic in Make while exposing functionality to AI systems20- Create bidirectional communication between your AI assistants and your existing automation workflows2122## Usage with Claude Desktop2324### Prerequisites2526- NodeJS27- MCP Client (like Claude Desktop App)28- Make API Key with `scenarios:read` and `scenarios:run` scopes2930### Installation3132To use this server with the Claude Desktop app, add the following configuration to the "mcpServers" section of your `claude_desktop_config.json`:3334```json35{36 "mcpServers": {37 "make": {38 "command": "npx",39 "args": ["-y", "@makehq/mcp-server"],40 "env": {41 "MAKE_API_KEY": "<your-api-key>",42 "MAKE_ZONE": "<your-zone>",43 "MAKE_TEAM": "<your-team-id>"44 }45 }46 }47}48```4950- `MAKE_API_KEY` - You can generate an API key in your Make profile.51- `MAKE_ZONE` - The zone your organization is hosted in (e.g., `eu2.make.com`).52- `MAKE_TEAM` - You can find the ID in the URL of the Team page.53
Full transparency — inspect the skill content before installing.