KosmoKrator

sales

Revolut MCP Integration for LangChain

Connect Revolut to LangChain through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.

7 functions 7 read 0 write Bearer token auth

Connect Revolut to LangChain

Bridge LangChain agents to local KosmoKrator integration tools through MCP or headless CLI calls.

Use the MCP gateway when the agent should discover tools, or wrap kosmo integrations:call for fixed chains. The gateway is local, scoped to this integration, and starts with --write=deny so LangChain can inspect read-capable tools without receiving write access by default.

Revolut MCP Config for LangChain

Keep the gateway scoped to the integration and operation class needed by the chain.

{
  "mcpServers": {
    "kosmokrator-revolut": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=revolut",
        "--write=deny"
      ]
    }
  }
}

Run the Gateway Manually

kosmokrator mcp:serve --integration=revolut --write=deny

Why Use KosmoKrator Here

Scoped tools

Expose only Revolut instead of a broad multi-service tool list.

Local credentials

Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.

Write policy

Start read-only, then opt into ask or allow for trusted workspaces.

Revolut Tools Visible to LangChain

LangChain sees stable MCP tool names generated from the Revolut integration catalog.

MCP toolSource functionTypeDescription
integration__revolut__revolut_list_accounts revolut.revolut_list_accounts Read List all Revolut business accounts. Returns account IDs, names, balances, and currency information.
integration__revolut__revolut_get_account revolut.revolut_get_account Read Retrieve a Revolut account by ID. Returns full account details including balance, currency, and state.
integration__revolut__revolut_list_transactions revolut.revolut_list_transactions Read List Revolut transactions with optional filters. Supports filtering by account, date range, type, and pagination with count.
integration__revolut__revolut_get_transaction revolut.revolut_get_transaction Read Retrieve a Revolut transaction by ID. Returns full transaction details including amount, currency, legs, and state.
integration__revolut__revolut_list_cards revolut.revolut_list_cards Read List all Revolut business cards. Returns card IDs, last 4 digits, status, and cardholder information.
integration__revolut__revolut_get_card revolut.revolut_get_card Read Retrieve a Revolut card by ID. Returns full card details including status, limits, and cardholder information.
integration__revolut__revolut_get_current_user revolut.revolut_get_current_user Read Get the currently authenticated Revolut user. Returns user profile information including name, email, and phone.

Related Revolut Pages