An MCP server that streams real-time cryptocurrency liquidation events from Binance, enabling AI agents to react instantly to high-volatility market movements. - Real-time Liquidation Streaming: Connects to Binance WebSocket to capture liquidation events. - Liquidation Data Storage: Maintains an in-memory list of up to 1000 liquidation events, with no persistent storage. - Tool: getlatestliquidati
Add this skill
npx mdskills install kukapay/crypto-liquidations-mcpStreams real-time Binance liquidation data with clear tool descriptions and usage examples
1# Crypto Liquidations MCP2[](https://smithery.ai/server/@kukapay/crypto-liquidations-mcp)34An MCP server that streams real-time cryptocurrency liquidation events from Binance, enabling AI agents to react instantly to high-volatility market movements.567891011## Features1213- **Real-time Liquidation Streaming**: Connects to [Binance WebSocket](wss://fstream.binance.com/ws/!forceOrder@arr`) to capture liquidation events.14- **Liquidation Data Storage**: Maintains an in-memory list of up to 1000 liquidation events, with no persistent storage.15- **Tool: `get_latest_liquidations`**:16 - Retrieves the latest liquidation events in a Markdown table.17 - Columns: `Symbol`, `Side`, `Price`, `Quantity`, `Time` (HH:MM:SS format).18 - Parameters: `limit` (default 10).19- **Prompt: `analyze_liquidations`**:20 - Generates a prompt to analyze liquidation trends across all symbols, leveraging the `get_latest_liquidations` tool.2122## Prerequisites2324- **Python 3.10**: Required for compatibility.25- **uv**: Package and dependency manager (install instructions below).26- **Internet Access**: To connect to Binance WebSocket.2728## Installation2930### Installing via Smithery3132To install Crypto Liquidations for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@kukapay/crypto-liquidations-mcp):3334```bash35npx -y @smithery/cli install @kukapay/crypto-liquidations-mcp --client claude36```3738### 1. Clone the Repository39```bash40git clone https://github.com/kukapay/crypto-liquidations-mcp.git41cd crypto-liquidations-mcp42```4344### 2. Install Dependencies45Install required packages using `uv`:46```bash47uv sync48```4950### 3. Integrate with an MCP Client51Configure your MCP client to connect to the server. For Claude Desktop:52```json53{54 "mcpServers": {55 "crypto-liquidations": {56 "command": "uv",57 "args": ["--directory", "/path/to/crypto-liquidations-mcp", "run", "main.py"]58 }59 }60}61```6263## Usage6465To get started, launch the MCP server to begin streaming liquidation events from Binance. The server runs quietly, collecting up to 1000 recent events in memory without generating logs or saving data to disk.6667### Retrieving Liquidation Events68Use the `get_latest_liquidations` tool to fetch the most recent liquidation events. You can specify how many events to retrieve (up to 1000) using the `limit` parameter. For example, you might ask:6970> "Show me the 5 most recent liquidation events from Binance."7172This will return a neatly formatted table showing the trading pair, buy or sell side, price, quantity, and the time of each liquidation in HH:MM:SS format.737475**Example Output**:76```markdown77| Symbol | Side | Price | Quantity | Time |78|----------|------|--------|----------|----------|79| BTCUSDT | BUY | 50000 | 1.5 | 14:30:45 |80| ETHUSDT | SELL | 3000 | 10.0 | 14:30:40 |81| BNBUSDT | BUY | 500 | 20.0 | 14:30:35 |82| ADAUSDT | SELL | 1.2 | 1000.0 | 14:30:30 |83| XRPUSDT | BUY | 0.8 | 5000.0 | 14:30:25 |84```8586This table makes it easy to see recent market activity, such as large buy or sell liquidations on Binance.8788### Analyzing Liquidation Trends89The `analyze_liquidations` prompt helps you dive deeper into the data. It generates instructions for analyzing liquidation trends across all trading pairs, focusing on frequency, volume, and market impact. The prompt suggests using the `get_latest_liquidations` tool to fetch data, ensuring you have the latest information to work with.9091This is particularly useful for understanding broader market dynamics, such as whether liquidations are increasing or signaling significant price movements.9293## License9495This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.96
Full transparency — inspect the skill content before installing.