make-mcp
Allows interaction with Make.com's platform, providing tools for managing scenarios, connections, and automation workflows via MCP.
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-mcpset up a scenario that syncs Google Sheets to Notion"
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.
D1DX/make-mcp — RETIRED 2026-05-08
This stdio-fork MCP server is no longer maintained. Migrate to the official Make.com cloud MCP.
Why retired
Three orphan-storm failure modes (1–3) were patched in v1.4.0–v1.4.2, but a fourth mode (libuv read-callback CPU loop on macOS Sequoia) emerged in v1.4.2 and proved difficult to detect from inside the runaway process. Rather than continue patching a stdio-spawn-based architecture, D1DX migrated all its MCP consumers to Make.com's first-party cloud MCP (Streamable HTTP, no spawned processes).
Related MCP server: mcp-n8n
How to migrate
Make.com publishes an official Streamable HTTP MCP at:
https://eu1.make.com/mcp/stateless(EU1 region)https://eu2.make.com/mcp/stateless(EU2 region)
Auth is Authorization: Bearer <MAKE_API_KEY> (mint at https://www.make.com/en/help/api/working-with-tokens).
Claude Code (.mcp.json)
{
"mcpServers": {
"make": {
"type": "http",
"url": "https://eu1.make.com/mcp/stateless",
"headers": {
"Authorization": "Bearer <MAKE_API_KEY>"
}
}
}
}Codex (.codex/config.toml)
[mcp_servers.make]
url = "https://eu1.make.com/mcp/stateless"
[mcp_servers.make.http_headers]
Authorization = "Bearer <MAKE_API_KEY>"Gemini CLI (.gemini/settings.json)
{
"mcpServers": {
"make": {
"httpUrl": "https://eu1.make.com/mcp/stateless",
"headers": {
"Authorization": "Bearer <MAKE_API_KEY>"
}
}
}
}Stub behavior
Any npx -y github:D1DX/make-mcp install of this repo (version 99.0.0-retired) will:
Print a deprecation banner to stderr during
postinstall(exit 0 so package managers don't crash).Print the same banner and exit 1 on any subsequent
make-mcp-serverinvocation.
The stub has no dependencies and no build step.
Historical reference
For the orphan-storm investigation that drove this retirement, see tasks/NO-ID (make-mcp-orphan-research)/ in D1DX/d1dx. The four documented failure modes:
Mode | Trigger | Fix attempt |
1 | Direct orphan, no wrapper |
|
2 | Orphan-of-orphan, stdin error event |
|
3 | Orphan-of-orphan, no stdin error |
|
4 | libuv read-callback CPU loop on Sequoia (no rejection event, watchdog falsely-live) | unfixed — retired |
License
MIT (see LICENSE).
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/D1DX/make-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server