sales
Revolut CLI for Headless Automation
Use the Revolut CLI for headless automation with headless JSON commands, schema discovery, credentials, and permission controls.
7 functions 7 read 0 write Bearer token auth
Revolut CLI for Headless Automation
Use KosmoKrator as a non-interactive integration runtime for local automations and wrappers.
Use headless automation when another tool needs a stable local command surface. The Revolut CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.
Command Shape
# Revolut CLI for Headless Automation
kosmokrator integrations:configure revolut --set access_token="$REVOLUT_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmo integrations:call revolut.revolut_list_accounts '{}' --json Discovery Before Execution
Agents and scripts can inspect Revolut docs and schemas before choosing a function.
kosmo integrations:docs revolut --json
kosmo integrations:docs revolut.revolut_list_accounts --json
kosmo integrations:schema revolut.revolut_list_accounts --json
kosmo integrations:search "Revolut" --json
kosmo integrations:list --json Useful Revolut CLI Functions
| Function | Type | Parameters | Description |
|---|---|---|---|
revolut.revolut_list_accounts | Read | none | List all Revolut business accounts. Returns account IDs, names, balances, and currency information. |
revolut.revolut_get_account | Read | id | Retrieve a Revolut account by ID. Returns full account details including balance, currency, and state. |
revolut.revolut_list_transactions | Read | account_id, from, to, count, type | List Revolut transactions with optional filters. Supports filtering by account, date range, type, and pagination with count. |
revolut.revolut_get_transaction | Read | id | Retrieve a Revolut transaction by ID. Returns full transaction details including amount, currency, legs, and state. |
revolut.revolut_list_cards | Read | none | List all Revolut business cards. Returns card IDs, last 4 digits, status, and cardholder information. |
revolut.revolut_get_card | Read | id | Retrieve a Revolut card by ID. Returns full card details including status, limits, and cardholder information. |
revolut.revolut_get_current_user | Read | none | Get the currently authenticated Revolut user. Returns user profile information including name, email, and phone. |
Automation Notes
- Use
--jsonfor machine-readable output. - Keep credentials out of argv by using environment variables or stored KosmoKrator configuration.
- Configure read/write policy before unattended runs; use
--forceonly for trusted automation. - Use the MCP gateway instead when the agent needs dynamic tool discovery inside a conversation.