crypto-com-mcp-skill

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Crypto.com MCP Skill

Crypto.com MCP Skill

Use this skill to run Crypto.com exchange market data workflows through
uxc
+ MCP.
Reuse the
uxc
skill for shared MCP execution, output parsing, and auth handling.
使用此Skill通过
uxc
+ MCP运行Crypto.com交易所市场数据工作流。
复用
uxc
Skill来处理共享的MCP执行、输出解析和身份验证。

Prerequisites

前提条件

  • uxc
    is installed and available in
    PATH
    .
  • Network access to
    https://mcp.crypto.com/market-data/mcp
    .
  • Access to the official Crypto.com MCP docs:
    • https://mcp.crypto.com/docs
  • uxc
    已安装且可在
    PATH
    中访问。
  • 能够访问网络地址
    https://mcp.crypto.com/market-data/mcp
  • 可访问官方Crypto.com MCP文档:
    • https://mcp.crypto.com/docs

Scope

适用范围

This skill covers the official Crypto.com MCP surface for:
  • exchange market discovery
  • ticker and order book style reads
  • read-only market data workflows
This skill does not cover:
  • exchange trading or account writes
  • private account workflows
  • non-MCP REST or WebSocket product families
此Skill覆盖官方Crypto.com MCP的以下功能领域:
  • 交易所市场发现
  • 行情报价和订单簿类读取操作
  • 只读市场数据工作流
此Skill包含以下内容:
  • 交易所交易或账户写入操作
  • 个人账户工作流
  • 非MCP的REST或WebSocket产品系列

Endpoint

端点

Use the official Crypto.com MCP endpoint:
  • https://mcp.crypto.com/market-data/mcp
使用官方Crypto.com MCP端点:
  • https://mcp.crypto.com/market-data/mcp

Core Workflow

核心工作流

  1. Use the fixed link command by default:
    • command -v crypto-com-mcp-cli
    • If missing, create it:
      uxc link crypto-com-mcp-cli https://mcp.crypto.com/market-data/mcp
  2. Inspect tool and argument help before execution:
    • crypto-com-mcp-cli -h
    • crypto-com-mcp-cli get_ticker -h
    • crypto-com-mcp-cli get_book -h
    • crypto-com-mcp-cli get_candlestick -h
  3. Prefer read-only market queries and keep instruments and limits narrow:
    • crypto-com-mcp-cli get_ticker instrument_name=BTC_USDT
    • crypto-com-mcp-cli get_book instrument_name=BTC_USDT depth=20
    • crypto-com-mcp-cli get_candlestick instrument_name=BTC_USDT timeframe=1h
  1. 默认使用固定链接命令:
    • command -v crypto-com-mcp-cli
    • 如果缺失,创建链接:
      uxc link crypto-com-mcp-cli https://mcp.crypto.com/market-data/mcp
  2. 执行前查看工具和参数帮助:
    • crypto-com-mcp-cli -h
    • crypto-com-mcp-cli get_ticker -h
    • crypto-com-mcp-cli get_book -h
    • crypto-com-mcp-cli get_candlestick -h
  3. 优先选择只读市场查询,并缩小工具和限制范围:
    • crypto-com-mcp-cli get_ticker instrument_name=BTC_USDT
    • crypto-com-mcp-cli get_book instrument_name=BTC_USDT depth=20
    • crypto-com-mcp-cli get_candlestick instrument_name=BTC_USDT timeframe=1h

Operations

操作列表

  • get_instruments
  • get_instrument
  • get_ticker
  • get_tickers
  • get_book
  • get_index_price
  • get_mark_price
  • get_candlestick
  • get_trades
  • get_instruments
  • get_instrument
  • get_ticker
  • get_tickers
  • get_book
  • get_index_price
  • get_mark_price
  • get_candlestick
  • get_trades

Guardrails

防护规则

  • Keep automation on the JSON output envelope; do not use
    --text
    .
  • Parse stable fields first:
    ok
    ,
    kind
    ,
    protocol
    ,
    data
    ,
    error
    .
  • Treat this v1 skill as read-only.
  • Treat this as market-data only. Do not imply trading, balances, or private account access.
  • crypto-com-mcp-cli <operation> ...
    is equivalent to
    uxc https://mcp.crypto.com/market-data/mcp <operation> ...
    .
  • 仅在JSON输出包上进行自动化操作;请勿使用
    --text
    参数。
  • 优先解析稳定字段:
    ok
    ,
    kind
    ,
    protocol
    ,
    data
    ,
    error
  • 将此v1版本Skill视为只读工具。
  • 仅用于市场数据相关操作。请勿涉及交易、余额或个人账户访问。
  • crypto-com-mcp-cli <operation> ...
    等同于
    uxc https://mcp.crypto.com/market-data/mcp <operation> ...

References

参考资料