> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hyperterse.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Installation

> Install the Hyperterse CLI—the agentic server framework for agents (A2A), MCP tools, prompts, and resources.

Hyperterse is an agentic server framework. The CLI validates your project and runs MCP plus optional A2A agent routes from one binary.

## System requirements

| Requirement      | Minimum                                                            |
| ---------------- | ------------------------------------------------------------------ |
| Operating system | Linux (amd64, arm64), macOS (amd64, arm64), Windows (amd64)        |
| Bun or Node.js   | Bun 1.0+ or Node.js 18+ (only if tool scripts import npm packages) |

The Hyperterse binary is a single statically linked executable. It has no runtime dependencies — no external runtime is needed to build or serve manifests.

## Install

Hyperterse is available on multiple package managers. The recommended way to install is via the installer script, but you can also install manually.

<CodeGroup>
  ```bash cURL theme={null}
  curl -fsSL https://hyperterse.com/install | bash
  ```

  ```bash npm theme={null}
  npm install -g hyperterse
  ```

  ```bash bun theme={null}
  bun install -g Hyperterse
  ```

  ```bash brew theme={null}
  brew install hyperterse/tap/hyperterse
  ```
</CodeGroup>

Once installed, you can verify the installation by running:

```bash theme={null}
hyperterse --version
```

## Upgrade

To upgrade to the latest version, run:

```bash theme={null}
hyperterse upgrade
```

Include pre-release builds with `--prerelease`, or target a specific major version with `--major 3` or `--major next`.
