Business banking and expense management.
## Revolut Business MCP Server: Business Banking The **Revolut Business MCP Server** integrates Revolut's business banking platform into Google Antigravity, enabling developers to manage business finances and international payments through AI-assisted banking workflows. ### Why Revolut Business MCP? - **Multi-Currency**: Hold and exchange 30+ currencies - **Low Fees**: Competitive FX and transfer fees - **Fast Transfers**: Instant domestic and fast international transfers - **Team Cards**: Physical and virtual cards for team - **API First**: Developer-friendly banking API ### Key Features #### 1. Account Management ```javascript // Get accounts const accounts = await revolut.getAccounts(); for (const account of accounts) { console.log("Currency:", account.currency); console.log("Balance:", account.balance); } // Get transactions const transactions = await revolut.getTransactions({ from: "2024-12-01", to: "2024-12-31", type: "transfer" }); // Exchange currency const exchange = await revolut.exchangeCurrency({ from: { accountId: "usd_account", currency: "USD", amount: 1000 }, to: { accountId: "eur_account", currency: "EUR" } }); ``` #### 2. Payments and Cards ```javascript // Create transfer const transfer = await revolut.createTransfer({ requestId: "unique_id", sourceAccountId: "account_123", targetAccountId: "account_456", amount: 5000, currency: "USD", reference: "Invoice payment" }); // Create payment to counterparty const payment = await revolut.createPayment({ requestId: "unique_id", accountId: "account_123", counterparty: { id: "counterparty_456" }, amount: 1000, currency: "EUR" }); // Get cards const cards = await revolut.getCards(); // Freeze card await revolut.freezeCard({ cardId: "card_123" }); ``` ### Configuration ```json { "mcpServers": { "revolut": { "command": "npx", "args": ["-y", "@anthropic/mcp-revolut"], "env": { "REVOLUT_API_KEY": "your-api-key", "REVOLUT_ENVIRONMENT": "production" } } } } ``` ### Use Cases **International Payments**: Pay vendors and contractors globally. **Multi-Currency Treasury**: Manage multi-currency operations. **Team Expenses**: Issue and manage team expense cards. The Revolut Business MCP Server brings modern banking to your workflow.
{
"mcpServers": {
"revolut": {}
}
}