Unofficial MCP server for Make.com automation - build, validate & deploy scenarios via AI
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"make-mcp-server": {
"env": {
"LOG_LEVEL": "error"
},
"args": [
"-y",
"make-mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
⚠️ Disclaimer: This is an unofficial, community-driven project created by a passionate fan of Make.com. It is NOT affiliated with, endorsed by, or officially supported by Make.com.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'make-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked make-mcp-server against OSV.dev.
Click any tool to inspect its schema.
guided_scenario_buildingGuided prompt for building scenarios
module_explorationGuided prompt for exploring Make.com modules
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in devops / productivity
Persistent memory using a knowledge graph
MCP server for using the GitLab API
Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.
a self-hosted project management & Kanban solution + Instant shareable boards
MCP Security Weekly
Get CVE alerts and security updates for io.github.danishashko/make-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
⚠️ Disclaimer: This is an unofficial, community-driven project created by a passionate fan of Make.com. It is NOT affiliated with, endorsed by, or officially supported by Make.com.
A Model Context Protocol (MCP) server that gives AI assistants like Claude, GitHub Copilot, and Cursor full access to Make.com module documentation, scenario validation, and one-click deployment. Search 200+ automation modules across 40+ apps, build blueprints with auto-healing, and deploy directly to Make.com — all from your AI chat.
metadata, adds designer coordinates, strips unsupported properties like router filterbuiltin:BasicRouter with multiple routes and recursive validationThe fastest way to get started — no cloning, no building:
Prerequisites: Node.js installed on your system
# Run directly — no installation needed!
npx -y make-mcp-server
The package includes a pre-built database with all 200+ Make.com modules. Just add it to your MCP client config and go.
Claude Desktop config (claude_desktop_config.json):
Basic configuration (documentation tools only):
{
"mcpServers": {
"make-mcp-server": {
"command": "npx",
"args": ["-y", "make-mcp-server"],
"env": {
"LOG_LEVEL": "error"
}
}
}
}
Full configuration (with Make.com deployment):
{
"mcpServers": {
"make-mcp-server": {
"command": "npx",
"args": ["-y", "make-mcp-server"],
"env": {
"LOG_LEVEL": "error",
"MAKE_API_KEY": "your_api_key_here",
"MAKE_TEAM_ID": "your_team_id",
"MAKE_API_URL": "https://eu1.make.com/api/v2"
}
}
}
}
Note: npx will download and cache the latest version automatically. The package includes a pre-built database with all Make.com module information — no setup required.
Prerequisites: Docker installed on your system
# Build the Docker image
docker build -t make-mcp-server .
# Test it works
echo '{"jsonrpc":"2.0","method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"0.1"}},"id":1}' | docker run -i --rm make-mcp-server
Claude Desktop config:
Basic configuration (documentation tools only):
{
"mcpServers": {
"make-mcp-server": {
"command": "docker",
"ar
... [View full README on GitHub](https://github.com/danishashko/make-mcp#readme)