Usage with Claude Desktop

Prerequisites

  • NodeJS

  • Claude Desktop App

  • Make API Key with scenarios:read andscenarios:run scopes

Installation

To use this server with the Claude Desktop app, open the Settings dialog and navigate to the Developer section. By clicking Edit Config, you’ll be directed to the folder containing the claude_desktop_config.json file.

Add the following configuration to the mcpServers section of your claude_desktop_config.json:

{
    "mcpServers": {
        "make": {
            "command": "npx",
            "args": ["-y", "@makehq/mcp-server"],
            "env": {
                "MAKE_API_KEY": "<your-api-key>",
                "MAKE_ZONE": "<your-zone>",
                "MAKE_TEAM": "<your-team-id>"
            }
        }
    }
}
  • MAKE_API_KEY - You can generate an API key in your Make profile.

  • MAKE_ZONE - The zone your organization is hosted in (e.g., eu2.make.com).

  • MAKE_TEAM - You can find the ID in the URL of the Team page.

Last updated