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

# motus serve create

> Create a new session on a running Motus agent server.

Create a new session and print its ID. This maps directly to `POST /sessions` described in the [Sessions API reference](/reference/api/sessions).

## Usage

```bash theme={null}
motus serve create <url>
```

## Examples

### Create a session

```bash theme={null}
motus serve create http://localhost:8000
```

```json theme={null}
{
  "session_id": "550e8400-e29b-41d4-a716-446655440000",
  "status": "idle"
}
```
