MCP.so
登录

Description

@sydowma

关于 Description

MCP server implementation for the cryptocurrency exchange. This package provides a simple interface to interact with Bybit/OKX/Binance public API endpoints.

基本信息

分类

金融与商务

许可证

Apache-2.0

运行时

python

传输方式

stdio

发布者

sydowma

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "crypto_exchange_mcp": {
      "command": "uv",
      "args": [
        "tool",
        "install",
        "https://github.com/sydowma/crypto_exchange_mcp/releases/download/v0.3.1/crypto_exchange_mcp_python-0.3.1-py3-none-any.whl"
      ]
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is Crypto Exchange MCP Server?

Crypto Exchange MCP Server is a unified interface for cryptocurrency exchanges Bybit, Binance, and OKX. It provides both public market data (no authentication) and private trading/account management tools, accessible via a single MCP server.

How to use Crypto Exchange MCP Server?

Install using uv tool install from the GitHub release, or with uv sync / pip install -r requirements.txt. For private APIs, set environment variables (BYBIT_API_KEY, BYBIT_API_SECRET, BINANCE_API_KEY, BINANCE_API_SECRET, OKX_API_KEY, OKX_API_SECRET, OKX_PASSPHRASE) or copy .env.example to .env. Configure Claude Desktop by adding a crypto-exchange server entry with the command uv run crypto_exchange_server.py and optional env vars.

Key features of Crypto Exchange MCP Server

  • Real‑time price tickers and 24h statistics
  • Order book depth for spot and futures markets
  • Historical kline/candlestick data with multiple intervals
  • Track perpetual contract funding rates and open interest
  • Full order management: place, cancel, and view orders
  • Account balance and position queries across exchanges
  • Aggregates multiple external exchange MCP servers into one endpoint

Use cases of Crypto Exchange MCP Server

  • Monitor live cryptocurrency prices and order books across three exchanges
  • Place market or limit orders programmatically from an AI assistant
  • View account balances and open positions without switching tools
  • Combine trading data from Bybit, Binance, and OKX in a single conversation
  • Build an AI‑powered trading bot using the unified tool interface

FAQ from Crypto Exchange MCP Server

Which exchanges are supported?

Bybit, Binance, and OKX – both spot and futures markets for all three.

Can I use only public market data without any configuration?

Yes. Public API endpoints (ticker, orderbook, klines, funding rate, open interest, symbols) work out of the box with no credentials.

How does the external MCP aggregation work?

The unified server can launch external exchange MCP implementations (e.g., official Bybit Trading MCP) as child processes. Use get_external_mcp_servers(), list_exchange_mcp_tools(), and call_exchange_mcp_tool() to access their tools through a single entrypoint.

What symbol format should I use per exchange?

Bybit: BTCUSDT (both spot and futures). Binance: BTCUSDT. OKX spot: BTC-USDT (or BTC-USD for actual spot), OKX futures: BTC-USDT-SWAP.

What are the runtime requirements?

Python 3.10+ with uv or pip. No additional runtime beyond those tools and the package dependencies listed in requirements.txt.

评论

金融与商务 分类下的更多 MCP 服务器