> ## 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.

# ClusterClient.create

```python theme={"system"}
def ClusterClient.create(name: str): Cluster
```

Create a cluster.

## Parameters

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

## Returns

The created cluster object.

<RequestExample>
  ```python Python theme={"system"}
  cluster = cluster_client.create("My cluster")
  ```
</RequestExample>
