Global multi-currency accounts + FX + international transfers. Best-in-class FX rates for cross-border. Profiles + Quotes + Recipients + Transfers + Balances + Webhooks. Bearer token, sandbox/live toggle.
Wise gives your agent 21 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
list_profiles β List Wise profiles (personal + business) accessible to this API token. Most other endpoints are scoped to a profile id, so call this first to discover yours.get_profile β Fetch a single Wise profile by id.create_quote β Create a Wise quote β locked FX rate plus payment options for a sourceCurrency / targetCurrency pair. Provide either sourceAmount or targetAmount, not both. Returns the quote id used to create a transfer.// Your agent calls a tool directly β no glue code.
// CodeSpar's managed tier handles OAuth2, token rotation and rate limits.
const result = await session.call("list_profiles", { /* ... */ });$ npm install @codespar/mcp-wiseAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"wise": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-wise"
],
"env": {
"WISE_API_TOKEN": "<your_wise_api_token>"
}
}
}
}After restart, your agent can call any of the 21 tools below β try list_profiles first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
WISE_API_TOKENWise Platform API token (Bearer). Issued per profile in the Wise dashboard.
WISE_ENVWise environment. 'sandbox' (default, https://api.sandbox.transferwise.tech) or 'live' (https://api.transferwise.com).
Each tool is independent β your agent loads only what it needs to reduce context and response time.
list_profilesget_profilecreate_quoteget_quoteupdate_quotecreate_recipientget_recipientlist_recipientsMCP is a protocol β any framework that speaks it can mount this server.