CoinGlass
live CryptoFinanceCrypto derivatives — funding rates, open interest, liquidations, and long/short ratio. BYO key.
Tools
coinglass_funding_rate Funding rates for BTC across exchanges (perpetual futures). Returns per-exchange current funding rate, interval, and next funding time for a coin symbol. Example: coinglass_funding_rate({ symbol: "BTC
No parameters required.
Try it
coinglass_open_interest Open interest for BTC across exchanges (perpetual futures). Returns per-exchange open interest in USD plus 24h change for a coin symbol. Example: coinglass_open_interest({ symbol: "BTC", _apiKey: "you
No parameters required.
Try it
coinglass_liquidations Recent liquidations for BTC (aggregated long vs short liquidation USD over the latest period). Example: coinglass_liquidations({ symbol: "BTC", _apiKey: "your-key" })
No parameters required.
Try it
coinglass_long_short_ratio Long/short ratio for BTC (global account long vs short percentage and ratio on an exchange). Example: coinglass_long_short_ratio({ symbol: "BTC", exchange: "Binance", _apiKey: "your-key" })
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/coinglass/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/coinglass/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"coinglass_funding_rate","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("coinglass_funding_rate", {}); // Or ask in plain English:
const answer = await px.ask("crypto derivatives — funding rates, open interest, liquidations, and long/short ratio");