DevelopersTerminal
Account CLI reference
Connect, inspect, and revoke the operator identity used by CLI and MCP requests.
On this page
Use this page to inspect every public atoi account command, its accepted flags, and one runnable example. Return to the CLI reference index to choose another command group.
atoi accountConnect, inspect, and revoke the operator identity used by CLI and MCP requests.
| Command | What it does |
|---|---|
atoi account login | Connect this CLI to your Atoi account with browser authorization or an operator token. |
atoi account status | Check whether the stored operator credential still works. |
atoi account logout | Revoke operator access and remove the local credential. |
#account login
Connect this CLI to your Atoi account with browser authorization or an operator token.
atoi account login [--token <token>] [--non-interactive] [--client-name <name>] [--no-browser] [--timeout-ms <ms>]
| Flag | Type | Default | Values | What it does |
|---|---|---|---|---|
--token | string | Use an operator token instead of browser authorization. | ||
--non-interactive | boolean | Fail instead of opening an interactive authorization flow. | ||
--client-name | string | Atoi CLI | Name this CLI in the authorization request. | |
--browser | boolean | true | Open the authorization URL. Pass --no-browser to keep it in the terminal. | |
--timeout-ms | number | 600000 | Stop waiting for device authorization after this many milliseconds. | |
--json | boolean | false | Emit the canonical JSON envelope. | |
--ndjson | boolean | false | Emit one canonical JSON envelope per line. | |
--format | string | text | text, json | Choose human text or the JSON envelope. |
--help -h | boolean | Show command help. |
#Run account login
atoi account login --client-name "Release terminal"
#account status
Check whether the stored operator credential still works.
atoi account status
| Flag | Type | Default | Values | What it does |
|---|---|---|---|---|
--json | boolean | false | Emit the canonical JSON envelope. | |
--ndjson | boolean | false | Emit one canonical JSON envelope per line. | |
--format | string | text | text, json | Choose human text or the JSON envelope. |
--help -h | boolean | Show command help. |
#Run account status
atoi account status --json
#account logout
Revoke operator access and remove the local credential.
atoi account logout [--local]
| Flag | Type | Default | Values | What it does |
|---|---|---|---|---|
--local | boolean | false | Remove only the local credential without asking Atoi to revoke it. | |
--json | boolean | false | Emit the canonical JSON envelope. | |
--ndjson | boolean | false | Emit one canonical JSON envelope per line. | |
--format | string | text | text, json | Choose human text or the JSON envelope. |
--help -h | boolean | Show command help. |
#Run account logout
atoi account logout
Was this useful?