Make.com MCP Server

by elitau

1 stars
392 downloads
Not rated
GitHub

About

An MCP server implementation that integrates parts of the Make.com API

Details

Author
elitau
GitHub stars
1
Downloads
392
Categories
Other

- Reads the JSON blueprint of a Make.com scenario.
- Supports retrieving both draft and live versions of a blueprint.
- Requires a Make.com API key with several read and run scopes.
- Integrates as a transport‑agnostic MCP server for AI assistants.

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Make.com MCP Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Clone the repository, install dependencies, and configure your API key. With Claude Desktop, add a configuration entry in claude_desktop_config.json specifying the MCP server command, path to the built dist/index.js, and environment variables MAKE_DOT_COM_API_KEY and MAKE_DOT_COM_BASE_URL. Then use the read_make_dot_com_scenario_blueprint tool with a scenario ID and optional draft flag.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "make.com mcp server": {
            "make-dot-com": {
                "command": "node",
                "args": [
                    "/full/absolute/path/to/mcp-server-make-dot-com/dist/index.js"
                ],
                "env": {
                    "MAKE_DOT_COM_API_KEY": "your-api-key-from-make-dot-com",
                    "MAKE_DOT_COM_BASE_URL": "eu2.make.com"
                }
            }
        }
    }
}

McpServers

{
    "make-dot-com": {
        "command": "node",
        "args": [
            "/full/absolute/path/to/mcp-server-make-dot-com/dist/index.js"
        ],
        "env": {
            "MAKE_DOT_COM_API_KEY": "your-api-key-from-make-dot-com",
            "MAKE_DOT_COM_BASE_URL": "eu2.make.com"
        }
    }
}

Make.com MCP Server

An MCP server implementation that integrates the Make.com API, providing reading make resources like scenario blueprints, users.

Scopes of API_KEY

I granted the following scopes to the API key:

- agents:read
- apps:read
- connections:read
- custom-property-structures:read
- datastores:read
- devices:read
- scenarios:read
- scenarios:run
- scenarios:write
- teams:read

Features

- Blueprint: Reads the blueprint of a scenario.

Tools

- read_make_dot_com_scenario_blueprint
- Reads the JSON blueprint of a scenario
- Inputs:
- scenario_id (number): Scenario ID
- draft (boolean, optional): If this parameter is set to true, the draft version of the scenario blueprint will be retrieved. If set to false, the live version of the blueprint will be retrieved. In case that the blueprintId parameter is set to the query as well, this parameter is ignored.

Configuration

Usage with Claude Desktop

Clone this repo and run bin/setup. Either pass your Make.com API key as the first argument, via MAKE_DOT_COM_API_KEY environment variable or pass the --use-op flag with the secret ref.

Manual setup

Clone this repo, run npm install in it. This should generate a dist/index.js file. Copy the path of this file into the claude_desktop_config.json like this:

{
  "mcpServers": {
    "make-dot-com": {
      "command": "node",
      "args": ["/full/absolute/path/to/mcp-server-make-dot-com/dist/index.js"],
      "env": {
        "MAKE_DOT_COM_API_KEY": "your-api-key-from-make-dot-com",
        "MAKE_DOT_COM_BASE_URL": "eu2.make.com"
      }
    }
  }
}
No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.