Skip to content

Install merido

The fastest way to get merido is the prebuilt binary. It's a single static executable that self-hosts the gateway, the dashboard, and the marketing site from one port — no Rust toolchain required. Prebuilt releases are published for macOS (arm64 + x86_64), Linux (x86_64 + arm64), and Windows (x86_64).

Prefer to build it yourself? Building from source still works — see the Quick start.

macOS & Linux

bash
curl -fsSL https://merido.dev/install.sh | sh

This downloads the right archive for your OS and CPU, unpacks the merido binary, and installs it to a directory on your PATH.

Environment overrides

The installer reads a few environment variables so you can pin a version, change the install location, or install from a self-hosted mirror:

VariableDefaultWhat it does
MERIDO_BASE_URLhttps://merido.devHost to download the installer manifest and binaries from. Point it at your own mirror.
MERIDO_VERSIONlatestPin a specific release tag (e.g. v0.1.0) instead of the latest.
MERIDO_BIN_DIRa directory on your PATHWhere to install the merido binary.

For example, to install a specific version into ~/.local/bin:

bash
curl -fsSL https://merido.dev/install.sh | \
  MERIDO_VERSION=v0.1.0 MERIDO_BIN_DIR="$HOME/.local/bin" sh

Windows (PowerShell)

Run this in a PowerShell prompt:

powershell
irm https://merido.dev/install.ps1 | iex

It downloads the latest x86_64 build and places merido.exe on your PATH.

Manual download

Every release is a self-contained archive. Browse the manifest at https://merido.dev/dl/latest.json, then download the asset for your platform from https://merido.dev/dl/<asset>:

PlatformAsset
macOS · Apple Siliconmerido-aarch64-apple-darwin.tar.gz
macOS · Intelmerido-x86_64-apple-darwin.tar.gz
Linux · x86_64merido-x86_64-unknown-linux-gnu.tar.gz
Linux · arm64merido-aarch64-unknown-linux-gnu.tar.gz
Windows · x86_64merido-x86_64-pc-windows-msvc.zip

Unpack the archive and move the merido binary (or merido.exe) somewhere on your PATH.

Keep merido up to date

merido self-updates from the same host you installed it from — no package manager, no reinstall:

bash
# download & install the latest release
merido update

# just check whether a newer version is available
merido update --check

Run it

bash
# start the gateway (embedded SQLite under ~/.merido) on http://127.0.0.1:8788
merido start

# or launch the interactive menu
merido

Next steps

  • Quick start — create a gateway key, add a provider, and make your first request (also covers building from source).
  • Connect a coding CLI — wire Claude Code / Codex / Cursor to merido.

MIT / Apache-2.0 licensed.