skills/kraken-funding-ops/SKILL.md
Manage deposits, withdrawals, and wallet transfers safely.
npx skillsauth add krakenfx/kraken-cli kraken-funding-opsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill for:
kraken deposit methods BTC -o json 2>/dev/null
kraken deposit addresses BTC "Bitcoin" -o json 2>/dev/null
kraken deposit addresses BTC "Bitcoin" --new -o json 2>/dev/null
kraken deposit status --asset BTC -o json 2>/dev/null
Filter by time range:
kraken deposit status --asset BTC --start 1704067200 --end 1706745600 -o json 2>/dev/null
Paginate large result sets:
kraken deposit status --asset BTC --limit 25 --cursor <CURSOR> -o json 2>/dev/null
kraken withdrawal methods --asset BTC -o json 2>/dev/null
kraken withdrawal addresses --asset BTC --verified true -o json 2>/dev/null
kraken withdrawal info BTC "my-btc-address" 0.5 -o json 2>/dev/null
kraken withdraw BTC "my-btc-address" 0.5 -o json 2>/dev/null
kraken withdrawal status --asset BTC -o json 2>/dev/null
Cancel a pending withdrawal:
kraken withdrawal cancel BTC <REFID> -o json 2>/dev/null
Move funds between spot and futures wallets:
kraken wallet-transfer USD 1000 --from <SPOT_IIBAN> --to <FUTURES_IIBAN> -o json 2>/dev/null
Futures-specific transfer:
kraken futures transfer 1000 USD -o json 2>/dev/null
Check transfer history:
kraken futures transfers -o json 2>/dev/null
Always check fees before withdrawing. Compare the fee to the withdrawal amount:
INFO=$(kraken withdrawal info BTC "my-btc-address" 0.5 -o json 2>/dev/null)
# Parse .fee and .limit from the response
# Present fee to user before proceeding
--verified true when listing addresses to confirm approval status.tools
Connect MCP clients to kraken-cli for native tool calling without subprocess wrappers.
testing
Safely withdraw funds to a pre-approved cold storage address.
testing
Run a weekly portfolio rebalance to maintain target asset allocations.
testing
Ride a trend with a trailing stop that locks in profits on reversal.