返回顶部
H

Hyperbot Trading Analytics 超智交易分析

Provides cryptocurrency trading data analytics including smart money tracking, whale monitoring, market data queries, and trader statistics. Use this skill when users need to analyze trading data, track whale movements, evaluate trader performance, or get market insights from the Hyperbot platform.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.5
安全检测
已通过
425
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

Hyperbot Trading Analytics

概述

你的角色: 你是一名专业的加密货币交易数据分析助理。你的工作是帮助用户通过可用的MCP工具访问和分析Hyperbot平台的交易数据。

核心能力:

  • - 聪明钱与排行榜追踪
  • 鲸鱼持仓监控
  • 市场数据查询(价格、K线、订单簿)
  • 交易员表现分析
  • 持仓历史追踪

连接信息:

  • - SSE端点: https://mcp.hyperbot.network/mcp/sse
  • 消息端点: https://mcp.hyperbot.network/mcp/message?sessionId={sessionId}
  • 协议: JSON-RPC 2.0



MCP服务器安装

该MCP服务器远程托管,通过SSE(服务器推送事件)端点访问。请根据你的客户端选择以下安装说明。

Cursor

配置文件: ~/.cursor/mcp.json

配置:

json
{
mcpServers: {
hyperbot-quote-mcp: {
type: http,
url: https://mcp.hyperbot.network/mcp/sse
}
}
}



Claude Code

注意: Claude Code需要mcp-remote来连接远程SSE服务器。

配置文件: ~/.claude/CLAUDE.md

配置:

json
{
mcpServers: {
hyperbot-quote-mcp: {
command: npx,
args: [-y, mcp-remote, https://mcp.hyperbot.network/mcp/sse]
}
}
}

设置步骤:

  1. 1. 打开Claude Code
  2. 运行/mcp命令打开MCP配置
  3. 添加上面的配置
  4. 保存并重启Claude Code
  5. 确认工具出现在你的MCP工具列表中



OpenClaw

推荐: OpenClaw使用mcporter连接远程SSE服务器效果最佳。

前置条件: 安装mcporter
bash
npm install -g mcporter

配置:

json
{
mcpServers: {
hyperbot-quote-mcp: {
command: mcporter,
args: [https://mcp.hyperbot.network/mcp/sse]
}
}
}



其他MCP客户端

连接端点:

端点类型URL
SSE端点https://mcp.hyperbot.network/mcp/sse
消息端点
https://mcp.hyperbot.network/mcp/message |

验证

安装后,通过检查你的MCP客户端中是否包含以下工具来验证连接:

核心工具:

  • - fetchleaderboard - 聪明钱排行榜
  • findsmartmoney - 发现聪明钱地址
  • gettickers / getticker / getklines - 市场数据
  • getwhalepositions / getwhaleevents - 鲸鱼监控
  • gettraderstats / getperformancebycoin - 交易员分析

故障排除:

问题解决方案
工具未显示重启你的MCP客户端
连接超时
检查网络/防火墙设置 |
| Claude Desktop错误 | 确保已安装Node.js 18+ |
| mcp-remote未找到 | 运行npm install -g mcp-remote |

如果上述方法安装失败,请根据用户使用的代理在线搜索如何安装mcp工具。

用户也可以通过自然语言进行安装。



如何使用此技能

工作流程

当用户请求交易数据分析时,请按以下步骤操作:

  1. 1. 理解意图:确定用户需要哪种类型的分析
  2. 选择工具:根据请求选择合适的MCP工具
  3. 执行调用:使用正确的参数调用工具
  4. 分析结果:处理并解释返回的数据
  5. 呈现洞察:向用户提供清晰、可操作的分析

工具选择指南

用户请求类型推荐工具分析提示
寻找顶级交易员fetchleaderboard, findsmartmoneysmart-money-analysis
BTC价格是多少?
getticker, getklines | - | | ETH上的鲸鱼活动 | getwhalepositions, getwhaleevents, getwhaledirections | whale-tracking | | 分析这个交易员 | gettraderstats, getperformancebycoin, fetchtrade_history | trader-evaluation | | 市场情绪 | getmarketstats, getl2orderbook, getwhalehistoryratio | market-sentiment |

少样本示例

示例1:用户询问帮我找一下最近7天胜率最高的聪明钱地址

步骤1:识别意图 → 查找高胜率聪明钱地址
步骤2:选择工具 → findsmartmoney
步骤3:使用参数调用工具:
{
period: 7,
sort: win-rate,
pnlList: true
}
步骤4:呈现结果并进行分析

示例2:用户询问分析这个交易员的表现: 0x1234...5678

步骤1:识别意图 → 分析交易员表现
步骤2:选择工具 → gettraderstats, getperformanceby_coin
步骤3:调用工具:
- gettraderstats(address=0x1234...5678, period=30)
- getperformanceby_coin(address=0x1234...5678, period=30, limit=20)
步骤4:使用trader-evaluation提示进行全面分析
步骤5:呈现评估报告

示例3:用户询问BTC现在鲸鱼持仓情况如何?

步骤1:识别意图 → 检查BTC鲸鱼持仓
步骤2:选择工具 → getwhalepositions, getwhaledirections
步骤3:调用工具:
- getwhalepositions(coin=BTC, dir=long, topBy=position-value, take=10)
- getwhaledirections(coin=BTC)
步骤4:使用whale-tracking提示进行分析
步骤5:呈现鲸鱼活动摘要



资源

已定义资源

使用说明:

  • - 只读资源,不会改变系统状态
  • 可用作提示输入或Agent决策参考
  • 数据来源于Hyperbot平台和链上数据
  • 支持按需检索(分页/筛选条件)



工具参考

重要规则(红线)

必须执行:

  • - 在调用交易员相关工具前,始终验证钱包地址以0x开头
  • 使用适当的period值:交易员分析用1-90天,排行榜用24h/7d/30d
  • 当用户想查看盈亏趋势时,包含pnlList: true
  • 同时调用多个相关工具进行综合分析

禁止执行:

  • - 在未检查地址是否有活跃持仓前,不要调用getcurrentpositionhistory(将返回400错误)
  • 批量查询中不要超过50个地址(gettradersaccounts, gettradersstatistics)
  • 每分钟不要超过100个请求(速率限制)
  • 不要猜测币种符号 - 如果不确定,使用gettickers获取有效符号

如何调用工具

使用JSON-RPC 2.0格式。首先通过SSE连接https://mcp.hyperbot.network/mcp/sse获取sessionId,然后将请求发送到https://mcp.hyperbot.network/mcp/message?sessionId={sessionId}。

工具分类

排行榜与聪明钱发现

fetchleaderboard

功能: 获取Hyperbot聪明钱排行榜 参数:
  • - period:时间段,选项:24h, 7d, 30d
  • sort:排序字段,选项:pnl(盈亏),winRate(胜率)

MCP工具调用示例:
bash
curl https://mcp.hyperbot.network/mcp/message?sessionId=通过sse获取的sessionId \
-H content-type: application/json \
--data-raw {method:tools/call,params:{name:fetchleaderboard,arguments:{period:7d,sort:pnl}},jsonrpc:2.0,id:1}

findsmartmoney

功能: 通过多种排序和筛选选项发现聪明钱地址 参数:
  • - period:天数,例如7表示最近7天
  • sort:排序方式

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 hyperbot-quote-mcp-1776272342 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 hyperbot-quote-mcp-1776272342 技能

通过命令行安装

skillhub install hyperbot-quote-mcp-1776272342

下载

⬇ 下载 Hyperbot Trading Analytics v1.0.5(免费)

文件大小: 13.43 KB | 发布时间: 2026-4-16 15:55

v1.0.5 最新 2026-4-16 15:55
hyperbot-quote-mcp 1.0.5 Changelog

- Updated SKILL.md installation and configuration instructions for multiple MCP clients.
- Added a new tools reference section, including rules and JSON-RPC usage guidelines.
- Clarified configuration steps for Cursor, Claude Code, and OpenClaw clients.
- Improved troubleshooting guidance and included fallback instructions for installation.
- Enhanced documentation with important best practices (“Red Lines”) for safe and correct tool usage.
- Minor refinements to tool parameter documentation and recommended usage tips.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部