MCP Make.com Server
Provides full access to the Make.com API, enabling creation, modification, deletion, activation, and execution of scenarios, as well as management of connections, webhooks, data stores (CRUD), and retrieval of teams/organizations.
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., "@MCP Make.com Servercreate a scenario that monitors a website and sends an alert if it changes"
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.
MCP Make.com Server
A Model Context Protocol (MCP) server that provides full access to the Make.com API, including the ability to create, modify, and delete scenarios - not just run them.
Features
Feature | Support |
List/Get Scenarios | Yes |
Create Scenarios | Yes |
Update Scenarios (Blueprint) | Yes |
Delete Scenarios | Yes |
Activate/Deactivate | Yes |
Run Scenarios | Yes |
Clone Scenarios | Yes |
Get Blueprints | Yes |
Connections Management | Yes |
Webhooks Management | Yes |
Data Stores CRUD | Yes |
Teams/Organizations | Yes |
Related MCP server: Airtable MCP
Installation
git clone <repo>
cd mcp-make-server
npm install
npm run buildConfiguration
Environment Variables
Variable | Required | Description |
| Yes | Your Make.com API token |
| No | API zone: |
Get Your API Token
Go to Make.com > Profile > API
Create a new token with these scopes:
scenarios:readscenarios:writescenarios:runconnections:readhooks:readdatastores:readdatastores:writeteams:readorganizations:read
Claude Desktop Configuration
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"make": {
"command": "node",
"args": ["/path/to/mcp-make-server/dist/index.js"],
"env": {
"MAKE_API_TOKEN": "your-api-token-here",
"MAKE_ZONE": "eu1"
}
}
}
}Cursor Configuration
Add to .cursor/mcp.json:
{
"mcpServers": {
"make": {
"command": "node",
"args": ["/path/to/mcp-make-server/dist/index.js"],
"env": {
"MAKE_API_TOKEN": "your-api-token-here",
"MAKE_ZONE": "eu1"
}
}
}
}Available Tools
Scenarios
Tool | Description |
| List all scenarios for a team/org |
| Get scenario details |
| Create a new scenario with blueprint |
| Update scenario name/blueprint/scheduling |
| Delete a scenario |
| Turn on a scenario |
| Turn off a scenario |
| Execute a scenario |
| Duplicate a scenario |
| Get full flow definition |
| Get execution history |
Connections & Webhooks
Tool | Description |
| List API connections |
| List webhooks |
Data Stores
Tool | Description |
| List data stores |
| Get data store details |
| Create new data store |
| List records |
| Add a record |
Organization
Tool | Description |
| List teams in org |
| List all orgs |
| Get authenticated user |
Example: Create a Scenario
// Blueprint for a simple HTTP -> JSON scenario
const blueprint = JSON.stringify({
name: "My New Scenario",
flow: [
{
id: 1,
module: "http:ActionGetFile",
version: 3,
mapper: {
url: "https://api.example.com/data",
method: "get"
}
},
{
id: 2,
module: "json:ParseJSON",
version: 1,
mapper: {
json: "{{1.data}}"
}
}
]
});
// Create with on-demand scheduling
create_scenario({
teamId: 123,
blueprint: blueprint,
scheduling: '{"type":"on-demand"}'
});Make.com API Zones
Zone | Region |
| EU (Default) |
| EU |
| US |
| US |
Development
# Run in development mode
npm run dev
# Build for production
npm run build
# Run production build
npm startLicense
MIT
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
- mcp-serverOAuthcom.make
Give your AI agents the tools to build, manage, and run automation workflows.
Read MagicBell broadcasts, users, events, workflows and channels; create and update user records.
Zero-setup MCP gateway securely connecting AI to your tools with authentication and workflows
Manage videos and live streams, inspect captions, players and webhooks, and read play analytics.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI models to manage n8n workflow automation through a standardized interface. Supports creating, reading, updating, and deleting workflows with comprehensive access to workflow nodes, connections, and configurations.9MIT
- AlicenseNot gradedqualityNot gradedmaintenanceEnables comprehensive interaction with the Airtable Web API to manage bases, tables, and records. It supports advanced features like batch record operations, CSV import/export, attachment uploads, and webhook management.-
- AlicenseBqualityDmaintenanceProvides full access to the Etsy Open API v3 for both buyer browsing and seller shop management through 37 specialized tools. It enables users to manage listings, process orders, handle shipping, and access inventory data via secure OAuth 2.0 authentication.2415MIT
- FlicenseAqualityDmaintenanceProvides complete programmatic access to the Retell AI platform, enabling autonomous management of voice and text agents, telephony, and monitoring.60-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Kikk79/mcp-server-make'
If you have feedback or need assistance with the MCP directory API, please join our Discord server