Catalog
io.github.jeff-nasseri/revolut-mcp
Officialby jeff-nasseri · TypeScript
MCP server for the Revolut Business API: accounts, transactions, payments, FX, and more.
Access Revolut Business API for accounts, transactions, payments, and FX operations.
Topics
aiai-agentsfintechllmrevolutrevolut-mcpmcp-serveropenbanking-api
README not available yet.
Install
Configuration
Environment variables
REVOLUT_CLIENT_IDrequiredClient ID from the Revolut Business portal (Settings -> APIs)
REVOLUT_PRIVATE_KEY_PATHPath to the PEM private key that signs the client-assertion JWT
REVOLUT_PRIVATE_KEYsecretPEM contents of the private key (alternative to REVOLUT_PRIVATE_KEY_PATH)
REVOLUT_REDIRECT_URIOAuth redirect URI registered with the certificate (default: https://example.com/)
REVOLUT_JWT_ISSJWT issuer; defaults to the redirect URI host
TOKEN_STORE_PATHWhere OAuth tokens are persisted (default: ./.tokens.json)
REVOLUT_ENVIRONMENTTarget environment: sandbox (default) or production
claude_desktop_config.json
{
"mcpServers": {
"revolut-mcp": {
"command": "npx",
"args": [
"-y",
"@jeff-nasseri/revolut-mcp@0.1.6"
],
"env": {
"REVOLUT_CLIENT_ID": "<YOUR_REVOLUT_CLIENT_ID>",
"REVOLUT_PRIVATE_KEY_PATH": "<YOUR_REVOLUT_PRIVATE_KEY_PATH>",
"REVOLUT_PRIVATE_KEY": "<YOUR_REVOLUT_PRIVATE_KEY>",
"REVOLUT_REDIRECT_URI": "<YOUR_REVOLUT_REDIRECT_URI>",
"REVOLUT_JWT_ISS": "<YOUR_REVOLUT_JWT_ISS>",
"TOKEN_STORE_PATH": "<YOUR_TOKEN_STORE_PATH>",
"REVOLUT_ENVIRONMENT": "<YOUR_REVOLUT_ENVIRONMENT>"
}
}
}
}