coinglass_open_interest

Pack: coinglass · Endpoint: https://gateway.pipeworx.io/coinglass/mcp

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: “your-key” })

Parameters

NameTypeRequiredDescription
symbolstringyesCoin symbol, e.g. “BTC”, “ETH”, “SOL”
exchangestringnoOptional — filter to a single exchange, e.g. “Binance”, “OKX”, “Bybit”
_apiKeystringyesCoinGlass API key

Example call

Arguments

{
  "symbol": "BTC",
  "_apiKey": "your-coinglass-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/coinglass/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"coinglass_open_interest","arguments":{"symbol":"BTC","_apiKey":"your-coinglass-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('coinglass_open_interest', {
  "symbol": "BTC",
  "_apiKey": "your-coinglass-api-key"
});

More examples

{
  "symbol": "SOL",
  "exchange": "OKX",
  "_apiKey": "your-coinglass-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "coinglass": {
      "url": "https://gateway.pipeworx.io/coinglass/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 18, 2026