CCXT MCP Server

by doggybee
Verified
MIT License
127
4
  • Apple

set-market-type

Set the default market type (spot, future, swap, option, or margin) for all exchanges on the CCXT MCP Server, ensuring immediate application with optional cache clearing.

Instructions

Set default market type for all exchanges

Input Schema

NameRequiredDescriptionDefault
clearCacheNoClear exchange cache to apply changes immediately
marketTypeYesMarket type to set

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "clearCache": { "default": true, "description": "Clear exchange cache to apply changes immediately", "type": "boolean" }, "marketType": { "description": "Market type to set", "enum": [ "spot", "future", "swap", "option", "margin" ], "type": "string" } }, "required": [ "marketType" ], "type": "object" }
ID: zrx6mdpyxy