Back to Guides

How to Connect Wise (TransferWise) to Claude AI

Connect the Wise API to Claude via MCP. Monitor multi-currency balances, track transfers, and analyze exchange rates with AI using AnythingMCP.

Track Your International Payments with Claude

Wise doesn't have an MCP connector. AnythingMCP converts Wise's REST API into an MCP server so Claude can query your multi-currency balances, transfers, and exchange rates.

Step-by-Step Guide

Step 1: Deploy AnythingMCP

git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d

Step 2: Get a Read Only Wise API Token

Generate a Read Only token in Wise Business settings → API tokens.

Step 3: Create a REST Connector

Base URL: https://api.transferwise.com. Set Bearer token authentication.

Step 4: Expose Key Endpoints

  • GET /v4/profiles/{profileId}/balances — Multi-currency balances
  • GET /v1/transfers — Transfer history
  • GET /v1/rates — Live exchange rates
  • GET /v1/profiles/{profileId}/borderless-accounts/statement — Statements

Step 5: Connect to Claude

{
  "mcpServers": {
    "wise": {
      "url": "http://localhost:4000/mcp"
    }
  }
}

You can also add your MCP server directly in Claude.ai under Settings → Connectors, without needing Claude Desktop.

Step 6: Ask Claude About Your Transfers

  • "What's our total balance across all currencies?"
  • "Show me the transfer history for the last 30 days"
  • "How much did exchange rate fluctuations cost us this quarter?"
  • "Compare EUR/USD rate today vs a month ago"

Next Steps