Back to Guides

How to Connect Wise (TransferWise) to ChatGPT

Connect the Wise API to ChatGPT via MCP. Track international transfers, analyze exchange rates, and monitor balances with natural language using AnythingMCP.

Manage International Transfers with ChatGPT

Wise (formerly TransferWise) has no MCP connector. With AnythingMCP, you can convert Wise's REST API into an MCP server and let ChatGPT track transfers, monitor multi-currency balances, and analyze exchange rates.

What You Need

  • A Wise Business account with API access
  • Docker installed
  • ChatGPT Desktop or any MCP-compatible AI client

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 Wise API Token

Go to your Wise Business settings → API tokens. Create a Read Only token. For sandbox testing, use https://api.sandbox.transferwise.tech.

Step 3: Create a REST Connector

In the dashboard, create a REST connector with base URL https://api.transferwise.com. Set the Bearer token for authentication.

Step 4: Expose Key Endpoints

  • GET /v1/profiles — Your business profiles
  • GET /v4/profiles/{profileId}/balances — Multi-currency balances
  • GET /v1/transfers — Transfer history
  • GET /v1/rates?source=EUR&target=USD — Live exchange rates
  • GET /v1/profiles/{profileId}/borderless-accounts/statement — Account statements

Step 5: Connect ChatGPT

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

Step 6: Analyze Your Finances

  • "What's my current balance in each currency?"
  • "How much did we transfer to the US this month?"
  • "What's the current EUR to GBP exchange rate?"
  • "Show me all transfers above €5,000 in the last quarter"
  • "What fees did we pay on international transfers this year?"

Security Best Practices

  • Use a Read Only API token
  • Never expose transfer creation endpoints to AI
  • Use sandbox environment for testing

Next Steps