← All skills
Tencent SkillHub · Communication & Collaboration

Kraken Exchange

Interact with the Kraken cryptocurrency exchange — spot + futures, REST + WebSocket. Use when: (1) checking crypto prices or market data, (2) viewing account...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Interact with the Kraken cryptocurrency exchange — spot + futures, REST + WebSocket. Use when: (1) checking crypto prices or market data, (2) viewing account...

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/tools.md, scripts/kraken.py, scripts/kraken.sh, scripts/setup-keys.sh

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.3.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 12 sections Open source page

Kraken Exchange

MCP server for the Kraken cryptocurrency exchange — 114 tools covering spot, futures, REST, and WebSocket APIs. Source: github.com/askbeka/tentactl (MIT license).

How It Works

tentactl is a Rust binary that speaks MCP (Model Context Protocol) over stdio. It provides: Spot REST (57 tools): Market data, account info, trading, funding, earn, subaccounts, exports Futures REST (21 tools): Instruments, positions, orders, transfers, funding rates Spot WebSocket v2 (19 tools): Live market data streams, real-time order management Futures WebSocket (17 tools): Live futures feeds, real-time futures trading

1. Install the binary

cargo install tentactl Or download from GitHub Releases (Linux, macOS, Windows).

2. Configure API keys (optional)

Market data tools work without any keys. For account and trading tools: echo "KRAKEN_API_KEY=your-key" > ~/.tentactl.env echo "KRAKEN_API_SECRET=your-secret" >> ~/.tentactl.env chmod 600 ~/.tentactl.env Or use the 1Password setup script: scripts/setup-keys.sh Key permissions: Create keys at https://www.kraken.com/u/security/api Read-only: enable Query Funds and Query Open Orders & Trades Trading: also enable Create & Modify Orders

Usage

# Market data (no auth) scripts/kraken.sh get_ticker '{"pair":"XBTUSD"}' scripts/kraken.sh get_orderbook '{"pair":"ETHUSD","count":5}' scripts/kraken.sh futures_tickers '{}' # Live WebSocket streams scripts/kraken.sh ws_subscribe_ticker '{"symbols":["BTC/USD"]}' scripts/kraken.sh ws_subscribe_book '{"symbols":["ETH/USD"],"depth":10}' scripts/kraken.sh wf_subscribe_ticker '{"product_ids":["PI_XBTUSD"]}' scripts/kraken.sh ws_status '{}' # Account (needs API keys) scripts/kraken.sh get_balance '{}' scripts/kraken.sh futures_open_positions '{}' # Trading (needs API keys) ⚠️ REAL MONEY scripts/kraken.sh place_order '{"pair":"XBTUSD","direction":"buy","order_type":"limit","volume":"0.001","price":"50000","validate":true}' scripts/kraken.sh ws_add_order '{"symbol":"BTC/USD","side":"buy","order_type":"limit","limit_price":"50000","order_qty":"0.001","validate":true}'

Tools Reference

See references/tools.md for full parameter docs on all 114 tools.

Safety Rules

ALWAYS use validate: true first when placing orders ALWAYS confirm with the user before placing real orders NEVER place orders without explicit user approval Market orders execute IMMEDIATELY — prefer limit orders Display validation result and ask for confirmation before removing validate Trading tools are marked with ⚠️ REAL MONEY in their descriptions

Trading Pairs

Spot REST: Kraken format — XBTUSD, ETHUSD, SOLUSD Spot WebSocket: Standard format — BTC/USD, ETH/USD, SOL/USD Futures: Product IDs — PI_XBTUSD, PI_ETHUSD, PF_SOLUSD

DCA (Dollar Cost Average)

openclaw cron add --schedule "0 9 * * 1" --task "Buy $50 of BTC on Kraken using the kraken skill. Use validate first, then execute."

Price Alerts

Subscribe to WebSocket ticker, check thresholds in heartbeat/cron, notify via WhatsApp/Telegram.

Portfolio Monitoring

Cron job that checks balances + positions + current prices, calculates P&L, alerts on significant changes.

Funding Rate Arbitrage

Subscribe to futures tickers, monitor funding rates, alert when rates diverge significantly.

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Scripts2 Docs
  • SKILL.md Primary doc
  • references/tools.md Docs
  • scripts/kraken.py Scripts
  • scripts/kraken.sh Scripts
  • scripts/setup-keys.sh Scripts