Skip to content
LangChain

Hyperliquid Whale Position Tracker API for LangChain

io.github.br0ski777/hyperliquid-whales

Top Hyperliquid trader positions — long/short, size, PnL, leverage, sentiment. x402.

client:LangChain transport:sse

Install Hyperliquid Whale Position Tracker API in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "hyperliquid-whales": {
            "transport": "streamable_http",
            "url": "https://hyperliquid-whales.api.klymax402.com/mcp",
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

Hyperliquid Whale Position Tracker API in other clients