Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowAI ToolzShinyLaunchMillion Dot HomepageSolver ToolsFeatured on FazierFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowAI ToolzShinyLaunchMillion Dot HomepageSolver Tools

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
Wise MCP
🌍

Wise MCP MCP Server

International money transfers and multi-currency accounts.

wisetransferscurrencyinternational

About

## 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.

Installation

Configuration
{
  "mcpServers": {
    "wise": {}
  }
}

How to Use

    Related MCP Servers

    🧰

    Toolhouse MCP

    Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

    🔨

    Smithery Registry MCP

    The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

    🔍

    MCP Inspector

    Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

    ← Back to All MCP Servers