Skip to main content
For the complete documentation index optimized for AI agents, see llms.txt.
List Helix Cloud clusters available to the active workspace or a specific project.

Usage

helix cluster <SUBCOMMAND>

Available sub-commands

Sub-commandDescription
listList Helix Cloud clusters.
indexes (alias indices)List the indexes in a cluster.

helix cluster list

FlagTypeDescriptionDefault
--workspace-idStringList clusters for a specific workspace.Active workspace from ~/.helix/config
--project-idStringLimit results to a specific project.Linked project from helix.toml, if any
--formathuman | jsonOutput format.human

helix cluster indexes

List the indexes defined in a cluster. Alias: helix cluster indices.
FlagTypeDescriptionDefault
--cluster-idStringCluster to inspect.The current project’s Enterprise instance, from helix.toml
--formathuman | jsonOutput format.human

Examples

# List clusters in the active workspace
helix cluster list

# List clusters scoped to a specific project
helix cluster list --project-id prj_01HX...

# List clusters in a non-active workspace
helix cluster list --workspace-id ws_01HX...

# Emit machine-readable JSON
helix cluster list --format json

# List indexes for the current project's Enterprise cluster
helix cluster indexes

# List indexes for a specific cluster as JSON
helix cluster indexes --cluster-id ec_01HX... --format json
Use the resulting cluster ID with helix init cloud, helix add cloud, or helix auth create-key.
helix cluster requires Helix Cloud authentication. Run helix auth login first.