International money transfers and multi-currency accounts.
## Wise MCP Server: Global Money Transfers & Multi-Currency Banking The **Wise MCP Server** integrates Wise (formerly TransferWise) into Google Antigravity, enabling developers to build applications with international payments, multi-currency accounts, and real-time exchange rates at the true mid-market rate. ### Why Wise MCP? - **True exchange rates** - Access mid-market rates without hidden markups - **Multi-currency accounts** - Hold and manage 50+ currencies in one place - **Global transfers** - Send money to 80+ countries with transparent fees - **Business payments** - Automate batch payouts and vendor payments - **Real-time rates** - Live currency conversion for pricing applications ### Key Features #### 1. International Transfers ```python # Create international money transfer quote = await mcp.call("wise", "create_quote", { "source_currency": "USD", "target_currency": "EUR", "source_amount": 10000 }) print(f"Rate: {quote[\"rate\"]}") print(f"Fee: ${quote[\"fee\"]:.2f}") print(f"Recipient gets: €{quote[\"target_amount\"]:.2f}") # Execute the transfer transfer = await mcp.call("wise", "create_transfer", { "quote_id": quote["id"], "recipient_id": "recipient_xxx", "reference": "Invoice #12345" }) ``` #### 2. Multi-Currency Balances ```python # Get all currency balances balances = await mcp.call("wise", "get_balances", { "profile_id": "business_xxx" }) for balance in balances: print(f"{balance[\"currency\"]}: {balance[\"amount\"]:.2f}") # Convert between currencies instantly conversion = await mcp.call("wise", "convert_balance", { "source_currency": "GBP", "target_currency": "USD", "amount": 5000 }) ``` #### 3. Batch Payouts ```python # Process batch payments for contractors batch = await mcp.call("wise", "create_batch_payment", { "payments": [ {"recipient_id": "r1", "amount": 2500, "currency": "EUR", "reference": "Jan payment"}, {"recipient_id": "r2", "amount": 1800, "currency": "GBP", "reference": "Jan payment"}, {"recipient_id": "r3", "amount": 3200, "currency": "CAD", "reference": "Jan payment"} ], "source_currency": "USD" }) print(f"Total cost: ${batch[\"total_source_amount\"]:.2f}") print(f"Total fees: ${batch[\"total_fee\"]:.2f}") # Fund and execute batch await mcp.call("wise", "fund_batch", { "batch_id": batch["id"], "funding_source": "balance" }) ``` #### 4. Real-Time Exchange Rates ```python # Get live exchange rates for pricing rates = await mcp.call("wise", "get_rates", { "source": "USD", "targets": ["EUR", "GBP", "JPY", "CAD", "AUD"] }) for rate in rates: print(f"USD/{rate[\"target\"]}: {rate[\"rate\"]:.4f}") # Calculate multi-currency pricing pricing = await mcp.call("wise", "calculate_pricing", { "base_amount": 99.00, "base_currency": "USD", "target_currencies": ["EUR", "GBP", "JPY"] }) ``` ### Configuration ```json { "mcpServers": { "wise": { "command": "npx", "args": ["-y", "@anthropic/mcp-wise"], "env": { "WISE_API_TOKEN": "your-wise-api-token", "WISE_PROFILE_ID": "your-profile-id", "WISE_ENVIRONMENT": "production" } } } } ``` ### Use Cases **Global Payroll**: Pay international contractors and employees in their local currencies with minimal fees and fast delivery. **E-commerce Pricing**: Display dynamic prices in customer local currencies using real-time exchange rates. **Treasury Management**: Optimize currency holdings and execute conversions at the best available rates. **Cross-Border Invoicing**: Receive payments in multiple currencies and consolidate into preferred currency. The Wise MCP Server enables truly global financial operations with transparent, fair pricing.
{
"mcpServers": {
"wise": {}
}
}