Allows AI assistants to list, trigger, and interact with Make.com automation scenarios, providing tools to invoke on-demand workflows and handle their input parameters and results.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Make MCP Serverrun the 'Sync CRM Leads' scenario with the team ID 123"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Make MCP Server (Fork)
Forked from integromat/make-mcp-server for extension and customization.
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.
Current Capabilities
The vanilla 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
Limitations (Vanilla)
The base server cannot:
Create, edit, or delete scenarios
Manage connections or webhooks
Access data stores
View or modify blueprints
Handle scheduled scenarios (only on-demand)
API Research
The /research/api/ directory contains comprehensive documentation on the Make.com API, focused on programmatically creating, editing, and managing scenarios:
Document | Description |
Overview and workflow | |
CRUD operations for scenarios | |
Scenario structure and IML mapping | |
Running and testing scenarios | |
Available modules and apps | |
OAuth and auth management | |
Webhook creation and management | |
Persistent key-value storage | |
Input/output definitions | |
Team and org management | |
API tokens, scopes, rate limits |
Usage with Claude Desktop
Prerequisites
NodeJS
MCP Client (like Claude Desktop App)
Make API Key with appropriate scopes (see below)
Recommended Scopes
For full functionality when extending this server:
scenarios:read- List and view scenariosscenarios:write- Create and modify scenariosscenarios:run- Execute scenariosconnections:read- View connectionsconnections:write- Create connectionshooks:read/hooks:write- Webhook managementdata-stores:read/data-stores:write- Data store accessteams:read- Team information
Installation (Local Build)
Clone this repository
Install dependencies:
npm installBuild:
npm run build
Add to Claude Desktop config (claude_desktop_config.json):
Installation (NPX)
For the vanilla upstream version:
Configuration
MAKE_API_KEY- Generate in your Make profile under API AccessMAKE_ZONE- Your organization's zone (e.g.,us2.make.com,eu1.make.com)MAKE_TEAM- Found in the URL when viewing your Team page
Roadmap
This fork aims to extend the MCP server with:
Scenario creation via API
Blueprint editing and management
Connection management
Data store operations
Webhook configuration
License
See upstream repository for license information.