wise-mcp
Provides tools for interacting with the Wise (TransferWise) API, enabling AI agents to manage profiles, balances, exchange rates, transfers, and recipients.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@wise-mcpList my Wise balances"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Wise MCP Szerver
MCP (Model Context Protocol) szerver a Wise (TransferWise) API-hoz.
Ez a szerver lehetővé teszi, hogy AI asszisztensek (pl. Claude) lekérdezhessék a Wise számla egyenlegét, árfolyamokat, átutalásokat és kedvezményezetteket.
Távoli használat (Smithery)
A legegyszerűbb módja a szerver használatának, ha a Smithery-n keresztül csatlakozol — nem kell semmit telepítened:
A Smithery automatikusan bekéri a Wise API tokenedet és kezeli a kapcsolatot.
Related MCP server: Wise MCP Server
Funkciók
Lekérdező eszközök (csak olvasás)
list_profiles - Profilok (személyes/üzleti) listázása
get_profile - Profil adatainak lekérdezése
list_balances - Egyenlegek listázása pénznem szerint
get_balance - Adott egyenleg részletei
get_exchange_rate - Aktuális árfolyam két pénznem között
get_exchange_rate_history - Árfolyam-történeti adatok
create_quote - Árajánlatkérés (díj és árfolyam)
get_quote / get_temporary_quote - Árajánlat lekérdezése
list_recipients - Kedvezményezettek listázása
get_recipient - Kedvezményezett részletei
get_account_requirements - Bankszámla-mező követelmények adott pénznemhez
list_transfers - Átutalások listázása szűrőkkel
get_transfer - Átutalás részletei
get_delivery_estimate - Becsült érkezési idő
Írási eszközök (pénzforgalom)
create_transfer - Átutalás létrehozása
fund_transfer - Átutalás finanszírozása egyenlegből
create_recipient - Új kedvezményezett felvétele
delete_recipient - Kedvezményezett törlése
cancel_transfer - Átutalás visszavonása
Figyelmeztetés: Az írási eszközök valós pénzmozgást indíthatnak! Javasoljuk, hogy ezeket az eszközöket csak tudatosan engedélyezd. A legtöbb MCP kliens (pl. Claude Desktop, Claude Code) lehetőséget ad az egyes eszközök egyenkénti engedélyezésére vagy tiltására. Ha csak egyenleg-lekérdezésre és árfolyam-ellenőrzésre van szükséged, tiltsd le az írási eszközöket.
Előfeltétel
Wise Personal API token szükséges. Igényelhető itt:
Helyi telepítés
Ha inkább lokálisan szeretnéd futtatni a szervert:
1. Telepítés
git clone https://github.com/Szotasz/wise-mcp.git
cd wise-mcp
npm install
npm run build2. Konfigurálás
Másold az .env.example fájlt .env néven és töltsd ki:
cp .env.example .envSzükséges környezeti változó:
Változó | Leírás |
| Wise Personal API token |
3. Hozzáadás a Claude Code-hoz
Add hozzá a ~/.claude/settings.json fájlhoz:
{
"mcpServers": {
"wise": {
"command": "node",
"args": ["/elérési/út/wise-mcp/dist/cli.js"],
"env": {
"WISE_API_TOKEN": "your_token_here"
}
}
}
}Az írási eszközök tiltásához add hozzá a settings.local.json fájlhoz:
{
"permissions": {
"deny": [
"mcp__wise__create_transfer",
"mcp__wise__fund_transfer",
"mcp__wise__create_recipient",
"mcp__wise__delete_recipient",
"mcp__wise__cancel_transfer"
]
}
}Használati példák
Konfigurálás után a következőket kérdezheted Claude-tól:
"Mennyi pénz van a Wise számlámon?"
"Mi az aktuális EUR/HUF árfolyam?"
"Listázd az utolsó átutalásaimat"
"Milyen pénznemekben van egyenlegem?"
Támogatás
Ha hasznosnak találtad ezt a projektet, támogathatod a fejlesztést:
Wise MCP Server (English)
MCP (Model Context Protocol) server for the Wise (TransferWise) API.
This server allows AI assistants like Claude to query Wise account balances, exchange rates, transfers, and recipients.
Remote Usage (Smithery)
The easiest way to use this server is through Smithery — no installation needed:
Smithery will automatically prompt you for your Wise API token and manage the connection.
Features
Query Tools (read-only)
list_profiles - List all profiles (personal and business)
get_profile - Get a specific profile by ID
list_balances - List balance accounts with available amounts per currency
get_balance - Get a specific balance account
get_exchange_rate - Get current exchange rate between two currencies
get_exchange_rate_history - Get historical exchange rates over a time period
create_quote - Create a quote to check fees and exchange rates
get_quote / get_temporary_quote - Retrieve an existing or temporary quote
list_recipients - List recipient accounts, optionally filtered by currency
get_recipient - Get a specific recipient by ID
get_account_requirements - Get required fields for creating a recipient in a specific currency
list_transfers - List transfers with optional filters (status, date range, pagination)
get_transfer - Get a specific transfer by ID
get_delivery_estimate - Get estimated delivery date for a transfer
Write Tools (financial operations)
create_transfer - Create a new transfer
fund_transfer - Fund a transfer from your Wise balance
create_recipient - Create a new recipient account
delete_recipient - Delete (deactivate) a recipient account
cancel_transfer - Cancel a transfer (if not yet completed)
Warning: Write tools can initiate real financial transactions! We recommend enabling these tools only when you explicitly need them. Most MCP clients (e.g. Claude Desktop, Claude Code) allow you to enable or disable individual tools. If you only need balance checks and exchange rates, disable the write tools.
Prerequisites
You need a Wise Personal API token. Get one at:
Local Installation
If you prefer to run the server locally:
1. Install
git clone https://github.com/Szotasz/wise-mcp.git
cd wise-mcp
npm install
npm run build2. Configure
Copy .env.example to .env and fill in your token:
cp .env.example .envRequired environment variable:
Variable | Description |
| Wise Personal API token |
3. Add to Claude Code
Add to your ~/.claude/settings.json:
{
"mcpServers": {
"wise": {
"command": "node",
"args": ["/path/to/wise-mcp/dist/cli.js"],
"env": {
"WISE_API_TOKEN": "your_token_here"
}
}
}
}To deny write tools, add to your settings.local.json:
{
"permissions": {
"deny": [
"mcp__wise__create_transfer",
"mcp__wise__fund_transfer",
"mcp__wise__create_recipient",
"mcp__wise__delete_recipient",
"mcp__wise__cancel_transfer"
]
}
}Usage Examples
Once configured, you can ask Claude:
"How much money is in my Wise account?"
"What is the current EUR to HUF exchange rate?"
"List my recent transfers"
"What currencies do I have balances in?"
Support
If you find this project useful, you can support the development:
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceEnables access to Wise API functionality for managing recipients and sending money transfers. Supports listing recipients, creating new recipients, validating account details, and executing money transfers with authentication handling.8MIT
- AlicenseAqualityCmaintenanceRead-only access to Wise (TransferWise) personal API for profiles, balances, exchange rates, transfers, and recipients.1175MIT
- FlicenseBqualityBmaintenanceEnables AI assistants to trade FX, manage beneficiaries, check balances, request quotes, and configure rate alerts and market orders via the CurrencyTransfer API.51
- AlicenseAqualityDmaintenanceProvides currency conversion using the Wise API, supporting real-time and historical rates with caching and cross-rate calculation.2MIT
Related MCP Connectors
Live & historical FX rates and currency conversion for AI agents. No API keys.
Wise (https://wise.com) MCP, multi-currency account access via Personal Token + SCA key. Reads profi
Connect AI agents to bank accounts, transactions, balances, and investments.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Szotasz/wise-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server