Make MCP Server

Unofficial MCP server for Make.com — build, validate & deploy automation scenarios via AI (community project, not affiliated with Make.com)

Local serverstdioTypeScript

What is the Make MCP server?

Most cloud and infrastructure work still happens through a UI a human drives. Make MCP server moves it into the conversation instead. Unofficial MCP server for Make.com — build, validate & deploy automation scenarios via AI (community project, not affiliated with Make.com).

The short version

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.

  • 🔍 200+ Modules — — Full-text search across 200+ Make.com modules (Slack, Gmail, Google Sheets, Notion, OpenAI, and 35+ more apps)
  • 📋 Module Details — — Retrieve parameters, types, descriptions, and usage docs for any module
  • ✅ Blueprint Validation — — Check scenarios for missing parameters, unknown modules, structural issues, and router sub-routes before deploying
  • 🛡️ Account-Aware Compatibility — — Verify module IDs against your live Make account/region before deployment to prevent "Module not found" scenarios
  • 🚀 Deploy to Make.com — — Push validated blueprints directly to Make.com via API
  • 🩹 Auto-Healing — — Automatically fixes LLM-generated blueprints: injects missing metadata, adds designer coordinates, strips unsupported properties like router filter

The tools it exposes

The server publishes 8 tools. What each one is for:

  • tools_documentationSTART HERE — Returns comprehensive documentation for all tools, prompts, and resources
  • search_modules — Full-text search across 200+ Make.com modules
  • get_module — Get detailed module info with parameters and docs
  • check_account_compatibility — Check if modules are available in your current Make account/region (with suggestions)
  • validate_scenario — Validate a scenario blueprint before deployment
  • create_scenario — Deploy a scenario to Make.com via API
  • search_templates — Search reusable scenario templates
  • list_apps — List all apps with module counts

What it needs from you

Configuration is passed through the environment: LOG_LEVEL, MAKE_API_KEY, MAKE_TEAM_ID, MAKE_API_URL, DATABASE_PATH. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Getting it running

make-mcp-server on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

How it compares

Plenty of cloud and infrastructure servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Make's toolset — tools_documentation, search_modules, get_module and 5 more — is a fair guide to whether it matches your workflow. It is maintained by danielshashko; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
tools_documentation**START HERE** — Returns comprehensive documentation for all tools, prompts, and resources
search_modulesFull-text search across 200+ Make.com modules
get_moduleGet detailed module info with parameters and docs
check_account_compatibilityCheck if modules are available in your current Make account/region (with suggestions)
validate_scenarioValidate a scenario blueprint before deployment
create_scenarioDeploy a scenario to Make.com via API
search_templatesSearch reusable scenario templates
list_appsList all apps with module counts

How to install the Make MCP server

**Claude Desktop config:**

```json
{
  "mcpServers": {
    "make-mcp-server": {
      "command": "node",
      "args": ["/absolute/path/to/make-mcp/dist/mcp/server.js"],
      "env": {
        "LOG_LEVEL": "error",
        "MAKE_API_KEY": "your_api_key_here",
        "MAKE_TEAM_ID": "your_team_id"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
LOG_LEVELConfiguration value read at startup.Optional
MAKE_API_KEYCredential the server authenticates with.Yes
MAKE_TEAM_IDConfiguration value read at startup.Optional
MAKE_API_URLEndpoint or connection string the server talks to.Yes
DATABASE_PATHFilesystem location the server is allowed to use.Optional

Example prompts to try

  • Use Make to tools documentation.
  • Use Make to search modules.
  • Use Make to get module.

Frequently asked questions

It connects Make to MCP-compatible AI assistants such as Claude and Cursor, exposing 8 tools (tools_documentation, search_modules, get_module, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Make directly.