---
title: Futrou CLI
description: Deploy and manage Futrou Cloud directly from your terminal.
---

## What it does

The Futrou CLI lets you deploy and manage Futrou Cloud resources from a terminal. Use it for serverlets, proxies, DNS zones, volumes, projects, and the rest of your workspace—locally or from CI.

## Install

On Linux or macOS, install the latest CLI with:

```bash
curl -fsSL https://futrou.com/install.sh | bash
```

On Windows PowerShell:

```powershell
irm https://futrou.com/install.ps1 | iex
```

You can also install it with npm, or run it without a global installation:

```bash
npm install -g futrou
npx futrou --help
```

The CLI supports Linux, macOS, Windows, and FreeBSD on x64 and arm64.

## Authenticate and explore

Sign in, then use the built-in help to discover available commands for your workspace:

```bash
futrou login
futrou --help
futrou serverlets list
```

Use `futrou <command> --help` whenever you need command-specific flags or examples.

## Use it with an AI coding agent

Install the Futrou skill to give supported AI coding agents the context they need for CLI and API workflows:

```bash
npx skills add futrou/futrou-cli
```

The skill covers deploying serverlets and managing proxies, DNS, volumes, projects, and the Futrou MCP server.

For source code, releases, and issue tracking, visit the [Futrou CLI repository](https://github.com/futrou/futrou-cli).