Back to MCP directory
publicPublicdnsLocal runtime

crypto_exchange_mcp

加密货币交易所MCP服务器实现,提供Bybit/OKX/Binance交易所API的交互接口

article

README

🚀 加密货币交易所MCP服务器实现

本项目是一个用于加密货币交易所的MCP服务器实现,提供了简单接口,可与Bybit、OKX、Binance的公共API端点进行交互,助力用户便捷获取加密货币相关信息。

🚀 快速开始

Bybit示例与Claude桌面设置步骤

  1. 克隆仓库
git clone https://github.com/sydowma/crypto_exchange_mcp.git
  1. 更新设置 需更新~/Library/Application\ Support/Claude/claude_desktop_config.json文件。其中,{your_path}表示git仓库文件夹路径。
{
  "mcpServers": {
    "Bybit": {
      "command": "uv",
      "args": [
        "--directory",
        "{your_path}/crypto_exchange_mcp/crypto_exchange_mcp_python",
        "run",
        "bybit.py"
      ]
    }
  }
}
  1. 打开/重启Claude桌面应用程序

✨ 主要特性

  • 实时价格数据获取
  • 现货和线性市场的订单簿访问
  • 资金费率监控
  • 未平仓头寸跟踪
  • 价格变化百分比计算
help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client