Gate MCP Skill

Use this skill to run Gate public market data workflows through uxc + MCP.

Reuse the uxc skill for shared MCP execution, output parsing, and generic auth guidance.

Prerequisites

Scope

This skill covers the official Gate MCP surface for:

This skill does not cover:

Endpoint

Use Gate's official MCP endpoint:

Core Workflow

  1. Use the fixed link command by default:
    • command -v gate-mcp-cli
    • If missing, create it: uxc link gate-mcp-cli https://api.gatemcp.ai/mcp
    • gate-mcp-cli -h
  2. Inspect tool and argument help before execution:
    • gate-mcp-cli cex_spot_get_spot_tickers -h
    • gate-mcp-cli cex_spot_get_spot_order_book -h
    • gate-mcp-cli cex_fx_get_fx_tickers -h
    • gate-mcp-cli cex_fx_get_fx_order_book -h
  3. Prefer narrow spot or futures reads with explicit instrument identifiers:
    • gate-mcp-cli cex_spot_get_spot_tickers currency_pair=BTC_USDT
    • gate-mcp-cli cex_spot_get_spot_order_book currency_pair=BTC_USDT limit=20
    • gate-mcp-cli cex_fx_get_fx_tickers contract=BTC_USDT
    • gate-mcp-cli cex_fx_get_fx_funding_rate contract=BTC_USDT

Operations

Spot

Futures

Guardrails

References