Additional Workflows

Copy Kick CLI commands for client lookup, transaction review, reporting, activity inspection, JSON exports, and local MCP.

These examples are starting points. Replace workspace IDs, entity IDs, dates, and filters with the client context you are reviewing.

Find the right client context

kick workspaces list
kick --workspace <workspace-id> whoami

Use this when you are switching between clients or checking whether a token is workspace-bound.

Review transactions that need attention

kick --workspace <workspace-id> transactions find --since 2026-01-01 --until 2026-01-31 --limit 25
kick --workspace <workspace-id> transactions find --since 2026-01-01 --until 2026-01-31 --fields id,date,amount,counterparty,bank_description --output json

Use --fields to keep output focused when another tool or agent needs to read the result.

Pull reports for review

kick reports profit-loss --entity 123 --start-date 2026-01-01 --end-date 2026-01-31 --basis cash --cycle month
kick reports balance-sheet --entity 123 --start-date 2026-01-01 --end-date 2026-01-31 --basis cash --output json
kick reports trial-balance --entity 123 --start-date 2026-01-01 --end-date 2026-01-31 --basis cash --output json

Use JSON output when another tool or script needs to read the result.

Inspect activity before changing anything

kick --workspace <workspace-id> activity list --resource-type transaction --changed-fields categoryId --limit 10
kick --workspace <workspace-id> activity logs --resource-type transaction --limit 10 --output json

For deeper review:

Pipe output to another tool

The CLI writes data to stdout and diagnostics to stderr, so stdout can be piped safely:

For agent workflows, prefer compact structured output:

Start local MCP

If your AI assistant uses local stdio MCP, run:

This starts a local MCP server using the same CLI credential and workspace context.

Preview supported write actions

Preview-first commands return a confirmation token. Review the preview, then pass the token or use the documented confirmation flag only when you are ready.

Do not automate confirmation unless the workflow has been reviewed and approved by your firm.

Last updated

Was this helpful?