Revolut Business MCP
Provides read-only access to Revolut Business transaction data, including listing transactions with filters and retrieving individual transactions by ID.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Revolut Business MCPList my last 5 transactions"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Revolut Business MCP
Read-only Model Context Protocol (MCP) server exposing Revolut Business transaction data to MCP clients over stdio.
Tools
revolut_list_transactions
List transactions. Single-page passthrough of the Revolut API response; no lossy field mapping.
Parameter | Type | Notes |
| string (ISO calendar date or RFC3339 datetime) | optional |
| string (ISO calendar date or RFC3339 datetime) | optional |
| string (UUID) | optional, filter by account |
| integer 1–1000 | optional |
| enum | optional; one of |
revolut_get_transaction
Get a single transaction.
Parameter | Type | Notes |
| string | required |
| literal | optional; when set, |
Related MCP server: finance-reconcile-mcp
Pagination caveat
revolut_list_transactions returns one page only, matching the Revolut API's own behavior. The server does not auto-paginate. Use from/to to page through results yourself.
Prerequisites
Node.js 22+
A Revolut Business account with API access
A client certificate registered with Revolut for API authentication, and the corresponding private key
Follow Revolut's official setup guides before configuring this server:
Install / build / test
npm install
npm run build # tsc -> dist/
npm run typecheck # tsc --noEmit
npm test # tsx --test test/**/*.test.tsEnvironment configuration
Copy .env.example to .env and fill in values. Do not commit .env or any private key material.
.env is auto-loaded (via Node's --env-file-if-exists=.env) only by npm start and npm run dev. Running node dist/src/index.js directly does not load .env; supply the required variables externally (e.g. via your process manager or shell), or invoke Node yourself with --env-file-if-exists=.env.
Variable | Description |
|
|
| OAuth client ID from your Revolut Business API app. |
| JWT |
| PEM private key matching the certificate registered with Revolut. Supports literal |
| Initial OAuth refresh token obtained via Revolut's authorization flow. |
| Optional. HTTP request timeout in milliseconds, integer between 100 and 120000. Defaults to 15000. |
Sandbox vs production
REVOLUT_ENV=sandbox targets https://sandbox-b2b.revolut.com/api/1.0; REVOLUT_ENV=production targets https://b2b.revolut.com/api/1.0. Any other value fails config loading at startup.
Refresh-token behavior
The server exchanges the configured refresh token for a short-lived access token on first use, caches it in memory, and renews it automatically before expiry (60s skew) or on a 401 response. If Revolut rotates the refresh token in its response, the rotated token is adopted only in memory for the current process and is never written to .env or any file. On restart, the server always uses the REVOLUT_REFRESH_TOKEN value from the environment, regardless of any rotation that happened in a previous run. If the old token was invalidated by rotation, the process fails to authenticate until REVOLUT_REFRESH_TOKEN is updated.
Operators who need rotation to survive restarts must build their own secure external persistence (e.g., a secrets manager write-back) and update the environment before the next start. This server does not provide that mechanism.
Running locally (stdio)
npm run build
npm startnpm start runs node --env-file-if-exists=.env dist/src/index.js, which auto-loads .env if present. For development without a build step, npm run dev runs the same via tsx against src/index.ts with the same .env auto-loading.
The server communicates over stdio; it has no HTTP listener. Run it via an MCP client that spawns it as a subprocess. If your MCP client invokes node dist/src/index.js directly (bypassing the npm scripts), it will not auto-load .env; the client must supply the environment variables itself (see the config example below) or you must add --env-file-if-exists=.env to the invocation.
MCP client configuration example
Generic stdio MCP client config (adapt keys to your client's format):
{
"mcpServers": {
"revolut-business": {
"command": "node",
"args": ["/absolute/path/to/revolut-business-mcp/dist/src/index.js"],
"env": {
"REVOLUT_ENV": "sandbox",
"REVOLUT_CLIENT_ID": "...",
"REVOLUT_JWT_ISS": "...",
"REVOLUT_PRIVATE_KEY": "-----BEGIN PRIVATE KEY-----\n...\n-----END PRIVATE KEY-----",
"REVOLUT_REFRESH_TOKEN": "..."
}
}
}
}Security notes
Never commit
.env, private keys, or refresh tokens.Treat the refresh token as a long-lived credential; rotate it if leaked.
The private key must correspond to the certificate registered with Revolut for this API client; keep it out of shell history and logs.
This server is read-only: it exposes no write, transfer, or payment-initiating tools.
Non-goals (current)
No auto-pagination across multiple pages of transactions.
No caching, persistence, or database layer.
No write/transfer/payment tools — listing and single-transaction retrieval only.
No transport other than stdio.
No automated refresh-token persistence back to environment files.
This README does not claim live verification against the production Revolut API; behavior is based on the implemented code and Revolut's published API documentation.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fridaypatrick/revolut-business-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server