
Market Data
Hyperbot Trading Analytics
Hyperbot Trading Analytics is a cryptocurrency analytics Skill exposing real-time and on‑demand market intelligence via SSE and JSON‑RPC. Connect to the streaming endpoint (https://mcp.hyperbot.network/mcp/sse) and send JSON‑RPC requests to https://mcp.hyperbot.network/mcp/message?
Overview
Hyperbot Trading Analytics is a cryptocurrency analytics Skill exposing real-time and on‑demand market intelligence via SSE and JSON‑RPC.
Hyperbot Trading Analytics is a cryptocurrency analytics Skill exposing real-time and on‑demand market intelligence via SSE and JSON‑RPC. Connect to the streaming endpoint (https://mcp.hyperbot.network/mcp/sse) and send JSON‑RPC requests to https://mcp.hyperbot.network/mcp/message?sessionId={your-session-id}. Key features include Smart Money & Leaderboard tools (fetch_leader_board, find_smart_money), comprehensive market data (get_tickers, get_ticker, get_klines, get_market_stats, get_l2_order_book), whale monitoring (get_whale_positions, get_whale_events, get_whale_directions, get_whale_history_ratio), trader analysis (fetch_trade_history, get_trader_stats, get_max_drawdown, get_best_trades, get_performance_by_coin), position history and batch queries. Use it for real‑time monitoring of large flows, strategy analysis, risk assessment, performance attribution, and automated agents that need streaming market signals. Integrations include Cursor and Claude Desktop (requires mcp-remote/Node.js).
Skill.md
How this skill works
Hyperbot Trading Analytics is a cryptocurrency analytics Skill exposing real-time and on‑demand market intelligence via SSE and JSON‑RPC. Connect to the streaming endpoint (https://mcp.hyperbot.network/mcp/sse) and send JSON‑RPC requests to https://mcp.hyperbot.network/mcp/message?
1. Overview
MCP Server Skill Documentation
Version: 1.0.0
Quick Start for Agents
This MCP server provides cryptocurrency trading analytics tools. To use these tools:
- Connect via SSE:
https://mcp.hyperbot.network/mcp/sse - Send requests to:
https://mcp.hyperbot.network/mcp/message?sessionId={your-session-id} - Protocol: JSON-RPC 2.0
Available Tool Categories:
- Smart Money & Leaderboard:
fetch_leader_board,find_smart_money - Market Data:
get_tickers,get_ticker,get_klines,get_market_stats,get_l2_order_book - Whale Monitoring:
get_whale_positions,get_whale_events,get_whale_directions,get_whale_history_ratio - Trader Analysis:
fetch_trade_history,get_trader_stats,get_max_drawdown,get_best_trades,get_performance_by_coin - Position History:
get_completed_position_history,get_current_position_history,get_completed_position_executions,get_current_position_pnl - Batch Queries:
get_traders_accounts,get_traders_statistics
2. MCP Server Installation
2.1 For Cursor Users
Add the following configuration to your Cursor MCP settings:
Method 1: Via UI
- Open
Cursor Settings→Tools & MCP→Add New MCP Server - Name:
hyperbot-trading - Type:
sse - URL:
https://mcp.hyperbot.network/mcp/sse
Method 2: Edit config file directly
Edit ~/.cursor/mcp.json:
{
"mcpServers": {
"hyperbot-trading": {
"type": "sse",
"url": "https://mcp.hyperbot.network/mcp/sse"
}
}
}
After configuration: Restart Cursor to apply changes.
2.2 For Claude Desktop Users
Important: Claude Desktop requires
mcp-remoteto connect to remote SSE servers. Make sure you have Node.js installed.
Configuration File Locations:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Configuration:
{
"mcpServers": {
"hyperbot-trading": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.hyperbot.network/mcp/sse"]
}
}
}
Setup Steps:
- Open Claude Desktop → Settings → Developer → Edit Config
- Add the configuration above
- Save and restart Claude Desktop (Cmd/Ctrl + R)
- Verify the tools appear in your MCP tools list
Prerequisite: Node.js 18+ must be installed. Install via:
- macOS:
brew install node - Windows: Download from https://nodejs.org/
2.3 For OpenClaw Users
Add the following configuration to your OpenClaw MCP settings:
Method 1: Via UI
- Open Settings → MCP → Add Server
- Name:
hyperbot-trading - URL:
https://mcp.hyperbot.network/mcp/sse
Method 2: Edit config file
{
"mcpServers": {
"hyperbot-trading": {
"type": "sse",
"url": "https://mcp.hyperbot.network/mcp/sse"
}
}
}
After configuration: Restart OpenClaw to apply changes.
2.4 For Linux Users
Configuration File Locations:
| Client | Config Path |
|---|---|
| Cursor | ~/.cursor/mcp.json |
| Claude Desktop (AppImage) | ~/.config/Claude/claude_desktop_config.json |
| Claude Desktop (Snap) | ~/.local/share/Claude/claude_desktop_config.json |
Quick Setup - Cursor on Linux:
mkdir -p ~/.cursor
cat > ~/.cursor/mcp.json << 'EOF'
{
"mcpServers": {
"hyperbot-trading": {
"type": "sse",
"url": "https://mcp.hyperbot.network/mcp/sse"
}
}
}
EOF
Quick Setup - Claude Desktop on Linux:
# Ensure Node.js is installed
sudo apt install nodejs npm # Debian/Ubuntu
# or
sudo dnf install nodejs npm # Fedora
# For AppImage installation
mkdir -p ~/.config/Claude
cat > ~/.config/Claude/claude_desktop_config.json << 'EOF'
{
"mcpServers": {
"hyperbot-trading": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.hyperbot.network/mcp/sse"]
}
}
}
EOF
2.5 For Other MCP Clients
Connection Endpoints:
| Endpoint Type | URL |
|---|---|
| SSE Endpoint | https://mcp.hyperbot.network/mcp/sse |
| Message Endpoint | https://mcp.hyperbot.network/mcp/message |
For clients supporting direct SSE URL:
{
"type": "sse",
"url": "https://mcp.hyperbot.network/mcp/sse"
}
For clients requiring mcp-remote (like Claude Desktop):
{
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.hyperbot.network/mcp/sse"]
}
2.6 Verification
After installation, verify the connection by checking if these tools are available in your MCP client:
Core Tools:
fetch_leader_board- Smart money leaderboardfind_smart_money- Discover smart money addressesget_tickers/get_ticker/get_klines- Market dataget_whale_positions/get_whale_events- Whale monitoringget_trader_stats/get_performance_by_coin- Trader analysis
Troubleshooting:
| Issue | Solution |
|---|---|
| Tools not appearing | Restart your MCP client |
| Connection timeout | Check network/firewall settings |
| Claude Desktop error | Ensure Node.js 18+ is installed |
| "mcp-remote not found" | Run npm install -g mcp-remote |
3. Resources
3.1 Defined Resources
None
Usage Notes:
- Read-only resources that do not change system state
- Can be used as prompt input or for Agent decision-making reference
- Data sourced from Hyperbot platform and on-chain data
- Supports on-demand retrieval (pagination/filtering conditions)
4. Tools
How to Call Tools: Use JSON-RPC 2.0 format. First obtain a sessionId via SSE connection to
https://mcp.hyperbot.network/mcp/sse, then send requests tohttps://mcp.hyperbot.network/mcp/message?sessionId={sessionId}.
4.1 Leaderboard & Smart Money Discovery
fetch_leader_board
Function: Get Hyperbot smart money leaderboard
Parameters:
period: Time period, options: 24h, 7d, 30dsort: Sort field, options: pnl (profit/loss), winRate (win rate)
MCP Tool Call Example:
curl 'https://mcp.hyperbot.network/mcp/message?sessionId=sessionId obtained via sse' \
-H 'content-type: application/json' \
--data-raw '{"method":"tools/call","params":{"name":"fetch_leader_board","arguments":{"period":"7d","sort":"pnl"}},"jsonrpc":"2.0","id":1}'
find_smart_money
Function: Discover smart money addresses with multiple sorting and filtering options
Parameters:
period: Period in days, e.g., 7 means last 7 dayssort: Sorting method, options: win-rate, account-balance, ROI, pnl, position-count, profit-count, last-operation, avg-holding-period, current-positionpnlList: Whether to include PnL curve data (true/false)
MCP Tool Call Example:
curl 'https://mcp.hyperbot.network/mcp/message?sessionId=sessionId obtained via sse' \
-H 'content-type: application/json' \
--data-raw '{"method":"tools/call","params":{"name":"find_smart_money","arguments":{"period":7,"sort":"win-rate","pnlList":true}},"jsonrpc":"2.0","id":2}'
4.2 Market Data
get_tickers
Function: Get latest trading prices for all markets
Parameters: None
MCP Tool Call Example:
curl 'https://mcp.hyperbot.network/mcp/message?sessionId=sessionId obtained via sse' \
-H 'content-type: application/json' \
--data-raw '{"method":"tools/call","params":{"name":"get_tickers","arguments":{}},"jsonrpc":"2.0","id":3}'
get_ticker
Function: Get latest trading price for a specific coin
Parameters:
address: Coin code, e.g., btc, eth, sol
MCP Tool Call Example:
curl 'https://mcp.hyperbot.network/mcp/message?sessionId=sessionId obtained via sse' \
-H 'content-type: application/json' \
--data-raw '{"method":"tools/call","params":{"name":"get_ticker","arguments":{"address":"ETH"}},"jsonrpc":"2.0","id":4}'
Best used for
When to use it
Hyperbot Trading Analytics is a cryptocurrency analytics Skill exposing real-time and on‑demand market intelligence via SSE and JSON‑RPC. Connect to the streaming endpoint (https://mcp.hyperbot.network/mcp/sse) and send JSON‑RPC requests to https://mcp.hyperbot.network/mcp/message?

01 · PRE-MEETING
Prepare a decision brief
Turn scattered evidence into a structured case before an investment committee meeting.

02 · TEAM WORKFLOW
Standardize handoffs
Create consistent research outputs across analysts, portfolio managers, and agents.

03 · LIVE UPDATE
Refresh the thesis
Update scenarios after a new catalyst, KPI release, or earnings result.
Community notes
Built to improve with use.
Feedback will appear here as this skill is used and reviewed.
Discover more
Related skills
View allstrykr-prism
Strykr PRISM is a unified, real-time financial data API designed for AI agents, trading bots, and fintech applications. It provides canonical asset resolution (handles symbols, aliases, and…
gmgn-market
gmgn-market is a CLI-driven Skill for retrieving crypto and meme-token market data: K-line (candlestick/OHLCV) charts, trending token rankings by USD volume, Trenches token lists, and newly launched…
gmgn-portfolio
The gmgn-portfolio Skill uses the gmgn-cli to analyze crypto wallets on Solana, BSC, and Base, returning holdings, token balances, realized and unrealized P&L, portfolio statistics, trade history,…