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

# context

The `morph context` command is used to check the logged-in user information on the cloud.

If no options are specified, the user information is displayed on the console. By specifying a file path, you can also save this information locally for testing purposes.

```bash Shell theme={"dark"}
morph context
```

```bash Shell theme={"dark"}
{
    "user_id": "xxxxx-xxxxx-xxxxx-xxxxxx",
    "email": "mock_user@morph-data.io",
    "username": "mock_user",
    "firstName": "Mock",
    "lastName": "User",
    "roles": [
        "Admin"
    ]
}
```

### Arguments

<ParamField body="--output / -o" type="str">
  Specify the file path to save the user information. For local testing, use
  `.mock_user_context.json`.
</ParamField>
