Install the Make CLI

The Make CLI is available for macOS, Linux, and Windows. Choose the installation method that suits your setup.

Install via npm

To install via npm, install Node.jsarrow-up-right and run this command in your terminal:

npm install -g @makehq/cli

Or to run directly without installing:

npx @makehq/cli <command>

Example

npx @makehq/cli scenarios list --team-id=123

Install via Homebrew (macOS and Linux)

To install via Homebrew, run this command in your terminal:

brew install make-cli integromat/tap/make-cli

Install via binary (macOS, Linux, Windows)

The following pre-built binaries are available:

Platform
Architecture
File

Linux

x86_64

make-cli-linux-amd64.tar.gz

Linux

arm64

make-cli-linux-arm64.tar.gz

macOS

x86_64 (Intel)

make-cli-darwin-amd64.tar.gz

macOS

arm64 (Apple Silicon)

make-cli-darwin-arm64.tar.gz

Windows

x86_64

make-cli-windows-amd64.tar.gz

To install from a binary:

  1. Download the archive for your platform from the Make CLI releases pagearrow-up-right.

  2. Extract the archive.

  3. Move the binary to a directory on your PATH.

Install via .deb package (Linux)

.deb packages are available for Linux:

Architecture
File

x86_64

make-cli-linux-amd64.deb

arm64

make-cli-linux-arm64.deb

To install via .deb package:

  1. Download the package from the Make releases pagearrow-up-right.

  2. Run this command in your terminal:

  1. Replace the filename with the one matching your architecture.

Last updated