Wise MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| WISE_API_TOKEN | Yes | Personal API token from https://wise.com/settings/api-tokens | |
| WISE_API_BASE_URL | No | Base URL for Wise API (sandbox: https://api.sandbox.transferwise.tech) | https://api.wise.com |
| WISE_API_TIMEOUT_MS | No | Per-request timeout in milliseconds | 30000 |
| WISE_API_ALLOW_UNSAFE_BASE_URL | No | Dangerous override to allow unsafe base URLs (set to 1 to bypass checks) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| wise_list_profilesA | List all profiles (PERSONAL and BUSINESS) accessible with the token. ALWAYS call this first — most other tools need a profileId. |
| wise_get_profileA | Get a profile by ID (name, type, address, KYC status). |
| wise_list_balancesA | List balance accounts for a profile. STANDARD = one per currency (the multi-currency account). SAVINGS = jars (user-named buckets). Default returns only STANDARD. |
| wise_get_balanceA | Get a specific balance by ID (available amount, reserved amount, last updated). |
| wise_get_exchange_rateA | Get the current mid-market exchange rate between two currencies. |
| wise_get_exchange_rate_historyB | Get historical mid-market exchange rates between two currencies. group: day/hour/minute granularity. |
| wise_list_transfersB | List transfers for a profile with optional filters. Use status to narrow: incoming_payment_waiting, processing, funds_converted, outgoing_payment_sent, bounced_back, cancelled, funds_refunded. |
| wise_get_transferA | Get a specific transfer by ID (status, amounts, recipient, quote, timestamps). |
| wise_list_recipientsA | List recipient accounts for a profile. Filter by currency if you only want e.g. EUR beneficiaries. |
| wise_get_recipientA | Get a recipient account by ID (bank details, account holder, currency). |
| wise_get_account_requirementsA | Get the required bank-account fields for creating a recipient in a given source→target currency + amount. Fields differ by country: USD routing number, EUR IBAN, GBP sort code, etc. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 11 tools
Each tool targets a distinct resource and action (e.g., get vs list for balances, profiles, recipients, transfers), with clear separation between exchange rate and exchange rate history. No overlap in purpose.
All tools follow a consistent 'wise_' prefix and 'verb_noun' pattern in snake_case. Verbs are uniformly 'get' for single resources and 'list' for collections, providing predictable structure.
11 tools is within the typical 3-15 range and covers the core read operations for balances, rates, profiles, recipients, and transfers. However, the set feels slightly lean given the complexity of the Wise API.
The tool set is entirely read-only; there are no create, update, delete, or action operations (e.g., creating transfers, recipients, or initiating payments). This leaves significant gaps for any workflow involving writing data.