Back to MCP directory
publicPublicdnsLocal runtime

max-mcp

MaiCoin MAX交易所的MCP服务项目,提供市场数据查询、账户管理、订单交易等功能,支持通过PyPI或GitHub安装配置。

article

README

🚀 MaiCoin MAX 交易所 MCP 服务器

MaiCoin MAX 交易所 MCP 服务器提供了一系列工具,可用于与 MaiCoin MAX 交易所进行交互,涵盖市场信息获取、账户管理、订单提交与取消等功能。通过该服务器,开发者能够便捷地接入 MaiCoin MAX 的 API,实现各类交易相关操作。

🚀 快速开始

你可以通过以下两种方式使用 MaiCoin MAX 交易所 MCP 服务器:

从 PyPI 安装

{
  "mcpServers": {
    "maxmcp": {
      "command": "uvx",
      "args": ["maxmcp"],
      "env": {
        "MAX_API_KEY": "",
        "MAX_API_SECRET": ""
      }
    }
  }
}

从 GitHub 仓库安装

{
  "mcpServers": {
    "maxmcp": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/narumiruna/max-mcp",
        "maxmcp"
      ],
      "env": {
        "MAX_API_KEY": "",
        "MAX_API_SECRET": ""
      }
    }
  }
}

✨ 主要特性

该服务器提供了以下工具,方便与 MaiCoin MAX 交易所进行交互:

  • get_markets:获取所有可用市场。
  • get_currencies:获取货币信息。
  • get_accounts:获取账户信息。
  • get_tickers:获取行情信息。
  • submit_order:提交订单。
  • cancel_orders:取消订单。

📚 详细文档

你可以参考 MaiCoin MAX API 文档 以获取更详细的 API 信息。

🔜 待办事项

公共 API

  • [ ] 索引价格
  • [ ] 历史索引价格
  • [ ] 可用贷款金额
  • [ ] 利息率
  • [x] 获取所有可用市场。
  • [x] getApiV3Currencies
  • [ ] getApiV3Timestamp
  • [ ] getApiV3K
  • [ ] getApiV3Depth
  • [ ] getApiV3Trades
  • [x] v2 tickers
  • [x] v3 ticker

钱包

  • [x] 账户
  • [ ] ad 比例
  • [ ] 提交贷款
  • [ ] 贷款记录
  • [ ] 提交还款
  • [ ] 还款记录
  • [ ] 涵盖历史
  • [ ] 涵盖详细信息
  • [ ] m-wallet 的利息历史
  • [ ] 兑换地址
  • [ ] 存款地址

订单

  • [x] 开放订单
  • [x] 已关闭订单
  • [ ] 按订单 ID 查询订单记录
  • [x] 提交订单
  • [x] 取消所有订单
  • [ ] 订单详细信息
  • [x] 取消一个订单

交易

  • [ ] 交易历史
  • [ ] 交易详细信息
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