CCXT MCP Server

by doggybee
Verified
MIT License
127
4
  • Apple

account-balance

Retrieve cryptocurrency account balances from various exchanges using API keys and secrets. Integrates with the CCXT MCP Server for high-performance exchange data management.

Instructions

Get your account balance from a crypto exchange

Input Schema

NameRequiredDescriptionDefault
apiKeyYesAPI key for authentication
exchangeYesExchange ID (e.g., binance, coinbase)
marketTypeNoMarket type (default: spot)
secretYesAPI secret for authentication

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "apiKey": { "description": "API key for authentication", "type": "string" }, "exchange": { "description": "Exchange ID (e.g., binance, coinbase)", "type": "string" }, "marketType": { "description": "Market type (default: spot)", "enum": [ "spot", "future", "swap", "option", "margin" ], "type": "string" }, "secret": { "description": "API secret for authentication", "type": "string" } }, "required": [ "exchange", "apiKey", "secret" ], "type": "object" }
ID: zrx6mdpyxy