KosmoKrator

sales

Revolut CLI for Coding Agents

Use the Revolut CLI for coding agents with headless JSON commands, schema discovery, credentials, and permission controls.

7 functions 7 read 0 write Bearer token auth

Revolut CLI for Coding Agents

Let coding agents discover schemas and execute integration functions through CLI commands or MCP.

Use this pattern when another coding agent needs exact commands and schema discovery. 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 Coding Agents
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

FunctionTypeParametersDescription
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

Related Revolut CLI Pages