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

# playground configure

> Set the playground server name and description

Sets the display name and description shown in the Alpic playground for an environment.

## Usage

```bash theme={null}
alpic playground configure
```

Prompts for a name and description interactively.

## Extended Usage

**Set name and description non-interactively:**

```bash theme={null}
alpic playground configure --name "My Server" --description "A helpful MCP server"
```

**Configure a specific environment:**

```bash theme={null}
alpic playground configure --environment-id <environmentId> --name "My Server" --description "A helpful MCP server"
```

## Options

| Flag                | Description                                                              |
| ------------------- | ------------------------------------------------------------------------ |
| `--environment-id`  | The ID of the environment (optional — read from local config if omitted) |
| `--name`            | The server name (max 100 characters)                                     |
| `--description`     | The server description (max 500 characters)                              |
| `--non-interactive` | Disable interactive prompts. Requires `--name` and `--description`.      |

<Tip>
  When running from a directory linked to an Alpic project, `--environment-id` is optional — the CLI reads it from the
  local `.alpic` config file.
</Tip>
