coinglass_funding_rate
Pack: coinglass · Endpoint: https://gateway.pipeworx.io/coinglass/mcp
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”, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
symbol | string | yes | Coin symbol, e.g. “BTC”, “ETH”, “SOL” |
exchange | string | no | Optional — filter to a single exchange, e.g. “Binance”, “OKX”, “Bybit” |
_apiKey | string | yes | CoinGlass API key (get one at coinglass.com — Hobbyist plan ~$29/mo) |
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_funding_rate","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_funding_rate', {
"symbol": "BTC",
"_apiKey": "your-coinglass-api-key"
});
More examples
{
"symbol": "ETH",
"exchange": "Binance",
"_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.