CCXT MCP Server

by doggybee
Verified
MIT License
127
4
  • Apple

get-funding-rates

Retrieve current funding rates for perpetual contracts on supported exchanges. Specify exchange, market type, and optional symbols to fetch precise data for your trading strategy.

Instructions

Get current funding rates for perpetual contracts

Input Schema

NameRequiredDescriptionDefault
exchangeYesExchange ID (e.g., binance, bybit)
marketTypeNoMarket type (default: swap)swap
symbolsNoList of trading pair symbols (optional)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "exchange": { "description": "Exchange ID (e.g., binance, bybit)", "type": "string" }, "marketType": { "default": "swap", "description": "Market type (default: swap)", "enum": [ "future", "swap" ], "type": "string" }, "symbols": { "description": "List of trading pair symbols (optional)", "items": { "type": "string" }, "type": "array" } }, "required": [ "exchange" ], "type": "object" }
ID: zrx6mdpyxy