Skip to main content
WI

Wise

v0.1.1API Key

Cuentas multimoneda globales + FX + transferencias internacionales. Tasas de FX de primera para transfronterizo. Profiles + Quotes + Recipients + Transfers + Balances + Webhooks. Bearer token, toggle sandbox/live.

21 herramientas2 env vars🌐 GLOBALestable en npm

Qué puede hacer tu agente

Wise le da a tu agente 21 tools que llama directo — elegí las que necesite, en Claude, Cursor o cualquier cliente MCP.

  • list_profilesList 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_profileFetch a single Wise profile by id.
  • create_quoteCreate 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.
Ejemplo de llamada
// 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", { /* ... */ });

Instalar

terminal
$ npm install @codespar/mcp-wise

Quickstart

Agregá esta entrada a tu claude_desktop_config.json (o a la config de cualquier cliente compatible con MCP).

claude_desktop_config.json
{
  "mcpServers": {
    "wise": {
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-wise"
      ],
      "env": {
        "WISE_API_TOKEN": "<your_wise_api_token>"
      }
    }
  }
}

Después de reiniciar, tu agente puede llamar cualquiera de las 21 herramientas de abajo — probá list_profiles primero.

Variables de entorno · 2

Necesarias para autenticar el server. Almacenadas cifradas al usar el hosting gestionado de CodeSpar.

WISE_API_TOKEN
obligatoriosecret

Wise Platform API token (Bearer). Issued per profile in the Wise dashboard.

WISE_ENV
opcional

Wise environment. 'sandbox' (default, https://api.sandbox.transferwise.tech) or 'live' (https://api.transferwise.com).

Herramientas disponibles · 21

Cada herramienta es independiente — tu agente carga solo lo que necesita para reducir contexto y tiempo de respuesta.

READlist_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.
READget_profile
Fetch a single Wise profile by id.
WRITEcreate_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.
READget_quote
Fetch a Wise quote by id (within a profile). Returns rate, fees, and available paymentOptions.
WRITEupdate_quote
Update a Wise quote (e.g. attach a recipient via targetAccount, or change payOut). Returns the updated quote with refreshed paymentOptions.
WRITEcreate_recipient
Create a Wise recipient (payout account). Required `details` fields vary by currency / country — discover them with list_recipient_account_requirements first.
READget_recipient
Fetch a Wise recipient by id.
READlist_recipients
List Wise recipients on a profile, optionally filtered by destination currency.

Frameworks compatibles

MCP es un protocolo — cualquier framework que lo hable puede montar este server.

Claude Agent SDKAnthropic
OpenAI AgentsOpenAI
Vercel AI SDKVercel
LangChainLangChain
LlamaIndexLlamaIndex
CrewAICrewAI
MastraMastra
Cualquier cliente MCPProtocolo

Preguntas frecuentes

Corré `npx -y @codespar/mcp-wise` y agregá el bloque de config de arriba a tu cliente MCP — Claude, Cursor, VS Code o cualquier cliente compatible con MCP. Sin build, sin SDK. ¿Preferís hosted? El tier gestionado de CodeSpar lo corre por vos, con la auth resuelta.
Wise — MCP server · 21 tools | CodeSpar