CCXT MCP Server

by lazy-dinosaur
Verified

fetchDeposits

Retrieve deposit history for a specified cryptocurrency account to monitor transactions. Configure account details, filter by currency code, limit results, or set a start timestamp using CCXT MCP Server.

Instructions

Fetch deposit history for a configured account

Input Schema

NameRequiredDescriptionDefault
accountNameYesAccount name defined in the configuration file (e.g., 'bybit_main')
codeNoCurrency code (e.g., 'BTC', 'ETH')
limitNoLimit the number of deposits returned (optional)
sinceNoTimestamp in ms to fetch deposits since (optional)

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" }, "code": { "description": "Currency code (e.g., 'BTC', 'ETH')", "type": "string" }, "limit": { "description": "Limit the number of deposits returned (optional)", "type": "number" }, "since": { "description": "Timestamp in ms to fetch deposits since (optional)", "type": "number" } }, "required": [ "accountName" ], "type": "object" }
ID: mt6hftp7hy