Skip to main content
Glama

CCXT MCP Server

createOrder

Submit buy or sell orders on cryptocurrency exchanges by specifying account, symbol, type (market/limit), side (buy/sell), and amount. Supports additional exchange-specific parameters.

Instructions

Create a new order using a configured account

Input Schema

NameRequiredDescriptionDefault
accountNameYesAccount name defined in the configuration file (e.g., 'bybit_main')
amountYesAmount of base currency to trade
paramsNoAdditional exchange-specific parameters
priceNoPrice per unit (required for limit orders)
sideYesOrder side: 'buy' or 'sell'
symbolYesTrading symbol (e.g., 'BTC/USDT')
typeYesOrder type: 'market' or 'limit'

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "accountName": { "description": "Account name defined in the configuration file (e.g., 'bybit_main')", "type": "string" }, "amount": { "description": "Amount of base currency to trade", "type": "number" }, "params": { "additionalProperties": {}, "description": "Additional exchange-specific parameters", "type": "object" }, "price": { "description": "Price per unit (required for limit orders)", "type": "number" }, "side": { "description": "Order side: 'buy' or 'sell'", "enum": [ "buy", "sell" ], "type": "string" }, "symbol": { "description": "Trading symbol (e.g., 'BTC/USDT')", "type": "string" }, "type": { "description": "Order type: 'market' or 'limit'", "enum": [ "market", "limit" ], "type": "string" } }, "required": [ "accountName", "symbol", "type", "side", "amount" ], "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/lazy-dinosaur/ccxt-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server