Connector CLI reference
Inspect and manage browser-owned connections without accepting credentials in the CLI.
On this page
Use this page to inspect every public atoi connector command, its accepted flags, and one runnable example. Return to the CLI reference index to choose another command group.
atoi connectorInspect and manage browser-owned connections without accepting credentials in the CLI.
| Command | What it does |
|---|---|
atoi connector list | List safe connection state without exposing credentials. |
atoi connector get | Read one connector state. |
atoi connector connect | Open the browser-owned connection flow. |
atoi connector disconnect | Disconnect one exact connector. |
#connector list
List safe connection state without exposing credentials.
atoi connector list
| 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 connector list
atoi connector list --json
{
"tool": "atoi_settings",
"arguments": {
"action": "get"
}
}
#connector get
Read one connector state.
atoi connector get <github|slack|linear|google-workspace>
| 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 connector get
atoi connector get github --json
{
"tool": "atoi_settings",
"arguments": {
"action": "get"
}
}
#connector connect
Open the browser-owned connection flow.
atoi connector connect <github|slack|linear|google-workspace>
| 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 connector connect
atoi connector connect github --json
{
"tool": "atoi_settings",
"arguments": {
"action": "authorize",
"connection": "github"
}
}
#connector disconnect
Disconnect one exact connector.
atoi connector disconnect <github|slack|linear|google-workspace> --confirm [--idempotency-key <key>]
| Flag | Type | Default | Values | What it does |
|---|---|---|---|---|
--confirm required | boolean | Confirm the exact consequential action after you inspect its target. | ||
--idempotency-key | string | Reuse a mutation identity when you safely retry the same action. | ||
--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 connector disconnect
atoi connector disconnect github --confirm --json
{
"tool": "atoi_settings",
"arguments": {
"action": "disconnect",
"connection": "github",
"confirmation": true,
"idempotency_key": "connector_github_1"
}
}
Was this useful?