# Download MOI-CLI

MOI-CLI (`moi-cli`) is the official command-line interface for MatrixOne Intelligence, used to manage workspaces, data streams, compute instances, and other resources from terminals or automation scripts.

## Download release packages

The current stable version is `0.1.0`. The CLI is a natively compiled binary program; download the build matching your operating system and CPU architecture:

| Operating System | Architecture | Package | File Size | Status | Download Link |
| :--- | :--- | :--- | :--- | :--- | :--- |
| **macOS** | Apple Silicon (`arm64`) | `moi-cli-0.1.0-darwin-arm64.zip` | ~8.1 MB | Available | [Download macOS arm64](../../../assets/downloads/moi-cli-0.1.0-darwin-arm64.zip) |
| **macOS** | Intel (`amd64`) | - | - | Planned | - |
| **Linux** | x86_64 / ARM64 | - | - | Planned | - |
| **Windows** | x86_64 | - | - | Planned | - |

````{dropdown} Checksums (SHA-256)
After downloading, verify file integrity using the official SHA-256 hash:

```bash
shasum -a 256 moi-cli-0.1.0-darwin-arm64.zip
```

Official SHA-256:

- `b76c59360f49ed8ad871a6adcab63eea1a500d0aeeee52f11aaf1d1c82a3fc2c`
````

## Extract and verify execution

Extract the downloaded archive to get the executable `moi-cli`:

```bash
unzip moi-cli-0.1.0-darwin-arm64.zip
cd moi-cli-0.1.0-darwin-arm64

# Check version
./bin/moi-cli -version

# Check command help
./bin/moi-cli --help
```

If `moi-cli version 0.1.0` and the help summary are printed, the binary is ready to run.

> **macOS Security Notice**:  
> The current build uses an internal test build signature. On macOS, if the system warns that the developer cannot be verified on first run, open **System Settings > Privacy & Security**, locate `moi-cli` at the bottom, and click **Open Anyway**.

## Next steps

After confirming the binary runs, configure your service endpoint and personal access token:

- [Use CLI to connect to a workspace](../ai-studio/cli.md)
- [CLI configuration and authentication](../../cli/configuration-authentication.md)
- [CLI common tasks overview](../../cli/tasks/index.md)
