Wise
The Wise connector lets your AI agent manage your Wise account directly: check balances, monitor exchange rates, manage recipients, and track transfers.
Credentials
All data is protected on the server with AES-256-GCM encryption.
Write operations
Decide whether your assistant can only read, or also make changes through this connector.
Money-moving operations
This connector can move money (creating and approving transfers). That is why it is off by default. Only turn it on if you consciously want your assistant to perform such operations.
Enable write tools
Read tools (lists, queries) are always available. When enabled, write tools (create, update, delete, transfer) become available too. Transactional calls are logged for 90 days.
Affected write tools (6)
create_quote: Create a quote for a money transfer. Specify either source or target amount. Returns exchange rate, fees, and delivery estimate.create_recipient: Create a new recipient account. Use get_account_requirements first to know which fields are needed.delete_recipient: Delete (deactivate) a recipient account.create_transfer: Create a new transfer. Requires a quote ID and recipient account ID.fund_transfer: Fund a transfer from your Wise balance.cancel_transfer: Cancel a transfer (only possible if not yet completed).
Danger zone
Removing the connector deletes the saved credentials. This cannot be undone.
Available tools (20)
These are the tools your assistant can invoke on this connector, in plain language.
Query (14)
These tools only read: they fetch data and never change anything.
list_balancesList all balance accounts for a profile. Returns currency balances with available amounts.
claude >Show my balancesget_balanceGet a specific balance account by ID.
claude >Show my EUR balance detailsget_exchange_rateGet the current exchange rate between two currencies.
claude >What is the EUR/HUF rate?get_exchange_rate_historyGet historical exchange rates between two currencies over a time period.
claude >EUR/HUF rate for the last 30 daysget_quoteGet an existing quote by ID.
claude >Show quote #12345get_temporary_quoteGet a temporary quote to check rates and fees without creating one.
claude >How much would 1000 EUR cost in HUF?list_recipientsList all recipient accounts for a profile, optionally filtered by currency.
claude >List my EUR recipientsget_recipientGet a specific recipient account by ID.
claude >Show recipient #789list_transfersList transfers for a profile with optional filters.
claude >Show my recent transfersget_transferGet a specific transfer by ID.
claude >Show transfer #456list_profilesList all profiles (personal and business) associated with your Wise account.
claude >List my Wise profilesget_profileGet a specific profile by ID.
claude >Show my business profileget_account_requirementsGet the required fields for creating a recipient in a specific currency route. Returns field definitions with validation rules.
claude >What fields are needed for a GBP recipient?get_delivery_estimateGet the estimated delivery date for a transfer.
claude >When will transfer #456 arrive?
Actions (6)
These tools create or modify data. Query tools are always available; write tools can be toggled in the connector settings.
create_quoteCreate a quote for a money transfer. Specify either source or target amount. Returns exchange rate, fees, and delivery estimate.
claude >Create a quote for 1000 EUR to HUFcreate_recipientCreate a new recipient account. Use get_account_requirements first to know which fields are needed.
claude >Add a new EUR recipientdelete_recipientDelete (deactivate) a recipient account.
claude >Remove recipient #789create_transferCreate a new transfer. Requires a quote ID and recipient account ID.
claude >Create a transfer using quote #123 to recipient #789fund_transferFund a transfer from your Wise balance.
claude >Fund transfer #456 from my balancecancel_transferCancel a transfer (only possible if not yet completed).
claude >Cancel transfer #456
Wise is one of the world's leading international money transfer platforms. The connector integrates via the Wise Personal API: reading balances, querying rates, managing recipients, and tracking transfers. Transactional tools (creating and funding transfers) can be enabled separately in the security settings.
Usage
This is how to call this connector through the MCP endpoint.
MCP call example
{
"connector": "wise",
"action": "...",
"params": { ... }
} You can find the MCP endpoint URL on the API keys page.