By integromatCreated 13 days ago
starstarstarstarstar

Turn your Make scenarios into callable tools for AI assistants.

Visit Project
Share this MCP:
X (Formerly Twitter)RedditblueskyThreads by Instagram

Category

Official MCP Server

Tags

MakeMcpAutomationAi Assistants

What is Make MCP Server?

The Make MCP Server is a legacy Model Context Protocol (MCP) server that enables AI assistants to utilize Make (formerly Integromat) automation scenarios as callable tools. This integration allows AI systems to trigger and interact with your pre-existing Make workflows, combining the power of AI with your automation logic.

How to use Make MCP Server?

  1. Prerequisites: Ensure you have NodeJS, an MCP Client (like Claude Desktop), and a Make API Key with the required permissions (scenarios:read and scenarios:run)
  2. Configuration: Add the MCP Server configuration to your Claude Desktop app's config file with your Make credentials:
    {
        "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>"
                }
            }
        }
    }```
    
  3. Access Scenarios: AI assistants can now discover and invoke your Make scenarios with appropriate parameters.

Key Features of Make MCP Server

  • Scenario Integration: Exposes Make scenarios as callable tools for AI assistants
  • Parameter Handling: Parses and resolves input parameters, providing AI with meaningful descriptions
  • JSON Output: Returns structured results that AI assistants can easily interpret
  • Bidirectional Communication: Facilitates two-way exchange between AI and automation workflows

Use Cases of Make MCP Server

  1. Enabling AI assistants to trigger complex business processes defined in Make
  2. Automating customer service workflows through AI-initiated Make scenarios
  3. Creating dynamic AI-driven workflows that combine natural language processing with automation
  4. Building AI-powered RPA (Robotic Process Automation) solutions

FAQ about Make MCP Server

  • What is the difference between the legacy version and the new version?

    The legacy version is the older implementation. For most use cases, we recommend using the new version which is modern and cloud-based.

  • Which Make scenarios can be used with this server?

    Only scenarios configured with "On-Demand" scheduling can be utilized by AI assistants through this server.

  • How secure is this integration?

    The integration uses API keys and follows Make's security protocols, but you should follow standard practices like keeping your API keys secure and only enabling necessary permissions.