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

# Wazoo CLI

> Wazoo Platform CLI installation, global flags, and command reference

The Wazoo CLI (`@wazoo/cli`) allows you to manage Wazoo Platform resources,
query memory worlds, manage API tokens, and perform graph data operations
directly from your terminal.

## Installation

Install the canonical Wazoo CLI globally via JSR.

<CodeGroup>
  ```bash npm theme={null}
  npx jsr add --global @wazoo/cli
  ```

  ```bash deno theme={null}
  deno install -Ar --name wazoo jsr:@wazoo/cli
  ```

  ```bash pnpm theme={null}
  pnpm dlx jsr add --global @wazoo/cli
  ```

  ```bash yarn theme={null}
  yarn dlx jsr add --global @wazoo/cli
  ```

  ```bash bun theme={null}
  bunx jsr add --global @wazoo/cli
  ```
</CodeGroup>

## Global options

All `wazoo` commands accept the following global flags:

| Flag              | Description                                                                   |
| :---------------- | :---------------------------------------------------------------------------- |
| `--api-url <url>` | Wazoo API base URL (overrides `WAZOO_API_URL` environment variable)           |
| `--token <token>` | Wazoo API authentication token (overrides `WAZOO_API_TOKEN` / `WORLDS_TOKEN`) |
| `--json`          | Output response data in structured JSON format                                |

## Platform commands

* [wazoo health](./health.mdx): Check status and health of the Wazoo API service
* [wazoo tokens](./tokens.mdx): List and create platform authentication tokens
* [wazoo usage](./usage.mdx): View world and account usage metrics

## World management & data operations

* [wazoo worlds](./worlds.mdx): Create, list, get, import, export, search, and
  run graph queries on worlds
