# Wise

Manage your Wise financial accounts, balances, and international money transfers directly. Access real-time and historical exchange rates, generate quotes, and track the status of your transactions. …

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y smithery mcp add aiamindennapokban/wise-mcp

# Browse available tools
npx -y smithery tool list aiamindennapokban/wise-mcp

# Get full schema for a tool
npx -y smithery tool get aiamindennapokban/wise-mcp list_profiles

# Call a tool
npx -y smithery tool call aiamindennapokban/wise-mcp list_profiles '{}'
```

## Direct MCP Connection

Endpoint: `https://wise-mcp--aiamindennapokban.run.tools`

**Required config:**
- `WISE_API_TOKEN` (query) — Wise Personal API token (get it from wise.com/settings/api-tokens)

## Tools (20)

- `list_profiles` — List all profiles (personal and business) associated with your Wise account
- `get_profile` — Get a specific profile by ID
- `list_balances` — List all balance accounts for a profile. Returns currency balances with available amounts. Types: STANDARD (one per cur…
- `get_balance` — Get a specific balance account by ID
- `get_exchange_rate` — Get the current exchange rate between two currencies
- `get_exchange_rate_history` — Get historical exchange rates between two currencies over a time period
- `create_quote` — Create a quote for a money transfer. Specify either sourceAmount OR targetAmount (not both). Returns exchange rate, fee…
- `get_quote` — Get an existing quote by ID
- `get_temporary_quote` — Get a temporary (non-stored) quote to check rates and fees without creating one
- `list_recipients` — List all recipient accounts for a profile, optionally filtered by currency
- `get_recipient` — Get a specific recipient account by ID
- `create_recipient` — Create a new recipient account. The 'details' object varies by currency/type. Use get_account_requirements first to kno…
- `delete_recipient` — Delete (deactivate) a recipient account
- `get_account_requirements` — Get the required fields for creating a recipient in a specific currency route. Returns field definitions with validatio…
- `list_transfers` — List transfers for a profile with optional filters
- `get_transfer` — Get a specific transfer by ID
- `create_transfer` — Create a new transfer. Requires a quote ID and recipient account ID. The customerTransactionId ensures idempotency — re…
- `fund_transfer` — Fund a transfer from your Wise balance. NOTE: This may NOT work with personal tokens in EU/UK due to PSD2 regulations.
- `cancel_transfer` — Cancel a transfer (only possible if not yet completed)
- `get_delivery_estimate` — Get the estimated delivery date for a transfer

```bash
# Get full input/output schema for a tool
npx -y smithery tool get aiamindennapokban/wise-mcp <tool-name>
```

## Prompts (3)

- `check-balance` — Check your Wise account balances
- `check-rate` (source, target) — Check exchange rate between two currencies
- `recent-transfers` (profileId) — Show recent transfers
