Authenticate and Select Workspace | AI & MCP | Kick Docs
[See what's new in the
Kick Changelog](/content/changelog/index.html)
For the complete documentation index, see llms.txt. This page is also available as Markdown.
Before running client commands, confirm who the CLI is acting as and which workspace the command will use.
Log in interactively
For interactive use, run:
kick login
The browser flow lets you approve a personal access token. The CLI stores the token in your OS keychain when available. If a keychain is unavailable, it falls back to ~/.config/kick/credentials with restricted file permissions.
Confirm the active user:
kick whoami
Use a token for scripts
For scripts, CI, or agent jobs, provide a PAT explicitly:
export KICK_PAT=kick_pat_...
kick whoami
Token lookup order is:
--token <value>KICK_PATKICK_API_TOKENfor the older environment variable name- OS keychain from
kick login ~/.config/kick/credentials
Do not commit PATs, paste them into shared docs, or store them in scripts without a secrets manager.
Select a workspace
List workspaces:
kick workspaces list
Run a command in a workspace:
kick --workspace <workspace-id> transactions find --limit 10
If you work across multiple clients, pass --workspace explicitly. This is safer than relying on a remembered default.
Use profiles for repeated work
Profiles can store environment and workspace defaults:
kick config set profiles.acme.defaultWorkspaceId <workspace-id>
kick config set defaultProfile acme
kick --profile acme whoami
Use named profiles only when the team understands what each profile points to.
Sign out
When you are done on a shared machine:
kick logout