integromat_make_mcp_server

integromat_make_mcp_server

by integromat
A Model Context Protocol server that enables Make scenarios to be utilized as tools by AI assistants.

Make MCP Server for AI Workflow Integration

Overview

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.

How It Works

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.

Benefits

  • Turn Make Scenarios into Callable Tools: Expose your Make automation workflows to AI assistants.
  • Maintain Complex Automation Logic: Keep your automation logic in Make while enabling AI systems to interact with it.
  • Bidirectional Communication: Facilitate communication between AI assistants and existing automation workflows.

Usage with Claude Desktop

Prerequisites

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.

Installation

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.

About

The Make MCP Server is part of the Integromat ecosystem, enabling advanced integration between AI tools and automation workflows.

Resources

License

This project is licensed under the MIT license.

Contributors

Languages

  • TypeScript: 79.5%
  • JavaScript: 17.7%
  • Dockerfile: 2.8%

Features & Capabilities

Categories
mcp_server model_context_protocol typescript javascript docker ai_integration api_integration claude automation

Implementation Details

Stats

0 Views
34 GitHub Stars

Repository Info

integromat Organization

Similar MCP Servers

continuedev_continue by continuedev
25049
21423
9300