make-mcp-server

MCP.Pizza Chef: integromat

Make MCP Server is a cloud-based Model Context Protocol server that integrates Make automation scenarios as callable tools for AI assistants. It connects to your Make account, identifies on-demand scenarios, parses input parameters, and allows AI systems to invoke workflows and receive structured JSON outputs. This server enables seamless interaction between AI assistants and complex Make automations, facilitating dynamic, parameterized task execution and result interpretation.

Use This MCP server To

Invoke Make automation scenarios via AI assistants Expose complex Make workflows as callable AI tools Parse and resolve input parameters for AI-triggered automations Return structured JSON outputs from Make scenarios to AI Enable AI-driven dynamic task execution in Make Integrate Make automations into AI-enhanced workflows

README

Make MCP Server (legacy)

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.

How It Works

The MCP server:

  • 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 as structured JSON, enabling AI assistants to properly interpret the results

Benefits

  • Turn your Make scenarios into callable tools for AI assistants
  • Maintain complex automation logic in Make while exposing functionality to AI systems
  • Create bidirectional communication between your AI assistants and your existing automation workflows

Usage with Claude Desktop

Prerequisites

  • NodeJS
  • MCP Client (like Claude Desktop App)
  • Make API Key with scenarios:read and scenarios:run scopes

Installation

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.

make-mcp-server FAQ

How does Make MCP Server connect to my Make account?
It securely connects via your Make account credentials to access on-demand scenarios.
Can AI assistants invoke any Make scenario?
Only scenarios configured with 'On-Demand' scheduling are accessible for AI invocation.
How are input parameters handled for AI-triggered scenarios?
The server parses and provides meaningful descriptions of input parameters for AI use.
What format does the server return scenario outputs in?
Outputs are returned as structured JSON for easy AI interpretation.
Is this the latest version of Make MCP Server?
This is the legacy version; a modern cloud-based version is recommended for most use cases.
Can I maintain complex automation logic within Make while using this server?
Yes, complex logic stays in Make while exposing functionality to AI assistants.
Does this server support real-time interaction with AI assistants?
Yes, it enables real-time invocation and response handling between AI and Make workflows.
What AI providers are compatible with Make MCP Server?
It is provider-agnostic and works with OpenAI, Claude, Gemini, and others.