Quickstart
This guide connects nuez to Claude Desktop as an MCP tool. By the end, you’ll be able to ask Claude to transfer funds from your nuez wallet.
Prefer to integrate directly with the REST API? See Authentication.
Prerequisites
Section titled “Prerequisites”- A nuez account (sign up at nuez.app)
- Claude Desktop installed (claude.ai/download)
- A funded nuez wallet (you’ll do this in step 3)
-
Get your API key
Section titled “Get your API key”Go to your nuez dashboard and create a new API key.
Set:
- Threshold:
5000(transfers under $5,000 ARS execute automatically; above that, you’ll get a WhatsApp confirmation) - Scopes:
transfer:write,balance:read,transactions:read
Copy the key — it starts with
nz_sk_live_(ornz_sk_test_for sandbox). - Threshold:
-
Add nuez to Claude Desktop
Section titled “Add nuez to Claude Desktop”Open your Claude Desktop config file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonAdd the nuez MCP server:
{"mcpServers": {"nuez": {"type": "http","url": "https://mcp.nuez.app","headers": {"Authorization": "Bearer nz_sk_live_YOUR_KEY_HERE"}}}}Save the file and restart Claude Desktop.
-
Fund your wallet
Section titled “Fund your wallet”Your nuez wallet has a CVU — a standard Argentine bank account identifier. Transfer any amount to it from:
- Any Argentine bank (Santander, Galicia, Brubank, etc.)
- Mercado Pago
- Ualá
You’ll find your CVU in the nuez dashboard under Wallet.
Funds arrive instantly via Transferencias 3.0.
-
Run your first transfer
Section titled “Run your first transfer”Open a new Claude conversation. You should see nuez in the tools list (🔧 icon).
Try asking:
“Check my nuez balance”
Then:
“Transfer $500 to CVU 0000003100010000123456 with description ‘test’”
If the amount is under your threshold: Claude executes immediately and shows you the transaction ID.
If the amount is over your threshold: You’ll get a WhatsApp message. Approve it and Claude will confirm the result.
What just happened
Section titled “What just happened”Claude used the nuez.balance and nuez.transfer MCP tools. Behind the scenes:
- nuez received the tool call with your API key
- The policy engine checked the amount against your threshold
- The transfer was sent over Transferencias 3.0 via BIND
- A signed webhook was fired (Claude received the result through the MCP response)
Next steps
Section titled “Next steps”- Policy engine — understand thresholds, scopes, and allowlists
- nuez.transfer reference — full parameter reference for the transfer tool
- REST API authentication — integrate without MCP