用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jiayaoqijia/cryptoskill --skill kraken-mcp-integration命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
"Peer-driven onchain reputation layer for AI agents enabling kudos across reliability, speed, accuracy, creativity, and security categories."
"Interaction layer where humans, AI agents, and blockchain converge, powering a trustless reputation economy for ERC-8004 ecosystem."
"Interaction layer powering trustless reputation economy for ERC-8004 ecosystem with rewards for honest contributions."
基于 SOC 职业分类
正在显示 SKILL.md
| name | kraken-mcp-integration |
| version | 1.0.0 |
| description | Connect MCP clients to kraken-cli for native tool calling without subprocess wrappers. |
| metadata | {"openclaw":{"category":"finance"},"requires":{"bins":["kraken"]}} |
Use this skill to connect any MCP-compatible client to kraken-cli for structured tool calling over stdio.
MCP tool calls execute through the same command path as CLI commands, so error handling and rate-limit behavior is identical between MCP and CLI.
Claude Desktop, ChatGPT, Codex, Gemini CLI, Cursor, VS Code, Windsurf, and any client that supports the MCP mcpServers configuration block.
Add this to your MCP client configuration (Claude Desktop: claude_desktop_config.json, Cursor: .cursor/mcp.json, etc.):
{
"mcpServers": {
"kraken": {
"command": "kraken",
"args": ["mcp", "-s", "market,trade,paper"]
}
}
}
The MCP server reads credentials from environment variables:
export KRAKEN_API_KEY="your-key"
export KRAKEN_API_SECRET="your-secret"
Public market data and paper trading require no credentials.
The client discovers tools on startup.
Control which command groups the MCP server exposes:
kraken mcp -s market # public data only (safe, no auth)
kraken mcp -s market,paper # market data + paper trading
kraken mcp -s market,trade,paper # add live trading
kraken mcp -s market,account,trade # add account queries
kraken mcp -s all # everything (many tools)
Keep the service list to what you need. MCP clients typically handle 50-100 tools well.
| Service | Auth | Tools | Risk |
|---|---|---|---|
| market | No | ~10 | None |
| account | Yes | ~18 | Read-only |
| trade | Yes | ~9 | Orders (dangerous) |
| funding | Yes | ~10 | Withdrawals (dangerous) |
| earn | Yes | ~6 | Staking (dangerous) |
| subaccount | Yes | ~2 | Transfers (dangerous) |
| futures | Mixed | ~39 | Orders (dangerous) |
| paper | No | ~10 | None (simulation) |
| auth | No | ~3 | Read-only (auth set/auth reset excluded) |
Dangerous tools include [DANGEROUS: requires human confirmation] in their description and carry the MCP destructive_hint annotation. In guarded mode (default), calls must include acknowledged=true. In autonomous mode (--allow-dangerous), the per-call confirmation is disabled. MCP clients that respect annotations may still prompt at the client layer.
For fully autonomous operation, see skills/kraken-autonomy-levels/SKILL.md.
If using Gemini CLI, install the extension directly:
gemini extensions install https://github.com/krakenfx/kraken-cli
The gemini-extension.json includes mcpServers config, so the MCP server starts automatically.
"No tools found": Check that kraken is on your PATH and the service list is valid. Run kraken mcp -s market manually to verify it starts.
Auth errors on tool calls: Set KRAKEN_API_KEY and KRAKEN_API_SECRET in the environment where your MCP client runs.
Too many tools: Reduce the service list. kraken mcp -s market,trade is a good starting point.
Streaming commands not available: WebSocket streaming commands are excluded from MCP v1. Use kraken ws ... directly from the terminal for streaming.