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

# Team management

> Invite teammates and manage access roles

## List teammates

```bash theme={null}
mthr users ls
```

## Invite a teammate

Every invite requires an access role:

```bash theme={null}
mthr users invite developer@example.com \
  --role customer-reader \
  --display-name "Developer"
```

Available roles:

| Role              | Access                           |
| ----------------- | -------------------------------- |
| `customer-admin`  | Manage the account and teammates |
| `customer-reader` | Read account and compute state   |

## Change a role

Use the teammate ID from `mthr users ls`:

```bash theme={null}
mthr users set-role CUSTOMER_USER_ID --role customer-admin
```

Role changes apply to the teammate's next authorization.
