Skip to main content
WI

Wise

v0.1.1API Key

Contas multimoeda globais + câmbio + transferências internacionais. Taxas de câmbio de primeira pra cross-border. Profiles + Quotes + Recipients + Transfers + Balances + Webhooks. Bearer token, toggle sandbox/live.

21 ferramentas2 env vars🌐 GLOBALestável no npm

O que seu agente faz

O Wise dá ao seu agente 21 tools que ele chama direto — escolha as que precisar, no Claude, Cursor ou qualquer 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.
Exemplo de chamada
// 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

Adicione esta entrada ao seu claude_desktop_config.json (ou a config de qualquer cliente compatível com MCP).

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

Depois de reiniciar, seu agente pode chamar qualquer uma das 21 ferramentas abaixo — teste list_profiles primeiro.

Variáveis de ambiente · 2

Necessárias pra autenticar o server. Armazenadas criptografadas ao usar a hospedagem gerenciada da CodeSpar.

WISE_API_TOKEN
obrigatóriosecret

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).

Ferramentas disponíveis · 21

Cada ferramenta é independente — seu agente carrega só o que precisa pra reduzir contexto e tempo de resposta.

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 compatíveis

MCP é um protocolo — qualquer framework que o fale pode montar este server.

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

Perguntas frequentes

Rode `npx -y @codespar/mcp-wise` e adicione o bloco de config acima ao seu cliente MCP — Claude, Cursor, VS Code ou qualquer cliente compatível com MCP. Sem build, sem SDK. Prefere hospedado? O tier gerenciado da CodeSpar roda pra você, com a auth resolvida.
Wise — MCP server · 21 tools | CodeSpar