An MCP server that provides real-time whale alerts on Hyperliquid, flagging positions with a notional value exceeding $1 million. - Tool: getwhalealerts: Fetches recent whale transactions and returns them as a Markdown table using pandas for clean formatting. - Prompt: summarizewhaleactivity: Generates a summary of whale transactions, including metrics like total position value and notable symbols
Add this skill
npx mdskills install kukapay/hyperliquid-whalealert-mcpWell-documented MCP server for crypto whale alerts with clear tools and setup
1# Hyperliquid WhaleAlert MCP23An MCP server that provides real-time whale alerts on Hyperliquid, flagging positions with a notional value exceeding $1 million.456789<a href="https://glama.ai/mcp/servers/@kukapay/hyperliquid-whalealert-mcp">10 <img width="380" height="200" src="https://glama.ai/mcp/servers/@kukapay/hyperliquid-whalealert-mcp/badge" alt="hyperliquid-whalealert-mcp MCP server" />11</a>1213## Features1415- **Tool: `get_whale_alerts`**: Fetches recent whale transactions and returns them as a Markdown table using `pandas` for clean formatting.16- **Prompt: `summarize_whale_activity`**: Generates a summary of whale transactions, including metrics like total position value and notable symbols.1718## Prerequisites1920- **Python**: Version 3.10 or higher.21- **CoinGlass API Key**: Obtain from [CoinGlass](https://www.coinglass.com/) (required for API access).22- **uv**: Package and dependency manager ([install uv](https://docs.astral.sh/uv/)).2324## Installation25261. **Clone the Repository**:27 ```bash28 git clone https://github.com/kukapay/hyperliquid-whalealert-mcp.git29 cd hyperliquid-whalealert-mcp30 ```31322. **Install Dependencies**:33 ```bash34 uv sync35 ```36 This installs dependencies specified in `pyproject.toml`.37383. **Claude Desktop Integration**:39 Install the server in Claude Desktop:40 ```bash41 uv run mcp install mcp.py --name "Hyperliquid Whale Alert"42 ```4344 Or update the configuration file manually:4546 ```47 {48 "mcpServers": {49 "hyperliquid-whalealert": {50 "command": "uv",51 "args": [ "--directory", "/path/to/hyperliquid-whalealert-mcp", "run", "main.py" ],52 "env": { "COINGLASS_API_KEY": "your_api_key" }53 }54 }55 }56 ```57 Replace `/path/to/hyperliquid-whalealert-mcp` with your actual installation path and `COINGLASS_API_KEY` with your API key.5859## Usage6061### Using the Tool6263The `get_whale_alerts` tool fetches whale transaction data and returns it as a Markdown list. Example output:6465```markdown66- **ETH Transaction**:67 - User Address: 0x3fd4444154242720c0d0c61c74a240d90c127d3368 - Position Size: 1270069 - Entry Price: $1611.6270 - Liquidation Price: $527.252171 - Position Value (USD): $2100326072 - Action: Close73 - Create Time: 2025-05-20 12:31:5774- **BTC Transaction**:75 - User Address: 0x1cadadf0e884ac5527ae596a4fc1017a4ffd4e2c76 - Position Size: 33.5403277 - Entry Price: $87486.278 - Liquidation Price: $44836.812679 - Position Value (USD): $2936421.475780 - Action: Close81 - Create Time: 2025-05-20 12:31:1782```8384To invoke the tool:85- In the MCP Inspector, select `get_whale_alerts` and execute.86- In Claude Desktop, use the registered server and call the tool via the UI or API.8788### Using the Prompt8990The `summarize_whale_activity` prompt generates a summary of whale transactions. Example interaction (in a compatible client):9192```plaintext93/summarize_whale_activity94```9596Response:97```98I'll analyze the whale transaction data and provide a summary.99```100101This can be extended by LLMs to provide detailed metrics like total position value or notable symbols.102103104## License105106This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
Full transparency — inspect the skill content before installing.