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

# Clusters.Create

```go theme={"system"}
func (*ClusterClient) Create(
    ctx context.Context,
    name string,
    options ...cluster.CreateOption,
) (*workflows.Cluster, error)
```

Create a cluster.

## Parameters

<ParamField path="name" type="string">
  A display name for the cluster.
</ParamField>

<ParamField path="cluster.WithDescription(description string)" type="cluster.CreateOption">
  Optional cluster description.
</ParamField>

<ParamField path="cluster.WithSlug(slug string)" type="cluster.CreateOption">
  Optional cluster slug. If omitted, Tilebox generates a slug from the cluster name.
</ParamField>

## Returns

The created cluster object, including its slug, name, description, whether it can be deleted, and deployed workflows.

<RequestExample>
  ```go Go theme={"system"}
  createdCluster, err := client.Clusters.Create(ctx,
      "My cluster",
      cluster.WithDescription("Development workloads"),
      cluster.WithSlug("dev"),
  )
  ```
</RequestExample>
