# tcld feature command reference

> Manage features in Temporal Cloud with the tcld feature commands. Use tcld feature get for details and tcld feature toggle to enable or disable specific features.

The `tcld feature` commands manage features in Temporal Cloud.

Alias: `f`

- [tcld feature get](#get)
- [tcld feature toggle](#toggle)

## get

The `tcld feature get` command gets information about the Temporal Cloud features you've enabled.

Alias: `g`

`tcld feature get`

The command has no modifiers.

**Example**

`tcld feature get`

The following is an example output:

```json
[
  {
    "Name": "enable-apikey",
    "Value": true
  }
]
```

## toggle

The `tcld feature toggle-*` command turns on or off the `*` feature in Temporal Cloud.

> **📝 Note:**
>
> The `*` symbol represents the name of the feature.
> Replace `*` with the name of the available feature to toggle.
>

Alias: `tak`

`tcld feature toggle-*`

The command has no modifiers.

**Example**

`tcld feature toggle-apikey`

The following is an example output:

```json
Feature flag enable-apikey is now true
```

> **📝 Note:**
>
> The feature `apikey` is an example.
> Update the feature name to toggle a different feature.
>
