mcpbeat

Gate DEX MCP Server

io.github.gateio-dev/gate-dex
answering

Gate DEX MCP is answering right now. Last checked 6 min ago. It exposes 47 tools. Last commit 16 Apr 2026.

Gate DEX MCP for wallet auth, transfers, swaps, token info, market data, and RPC access.

Uptime history 40 hours of history
40 hours agonow
100.0%
Uptime 24h
91 of 91 checks
47
Tools
read from the server
646 ms
Response time
average over 24h
33
Stars
last commit 16 Apr 2026

Connect this server

Endpoint below is the one we actually reach during checks — not the one copied from a README. Last verified 6 min ago.

run in your terminal
claude mcp add gate-dex --transport http https://api.gatemcp.ai/mcp/dex
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "gate-dex": {
      "url": "https://api.gatemcp.ai/mcp/dex"
    }
  }
}
~/.codex/config.toml
[mcp_servers.gate-dex]
url = "https://api.gatemcp.ai/mcp/dex"
.cursor/mcp.json
{
  "mcpServers": {
    "gate-dex": {
      "url": "https://api.gatemcp.ai/mcp/dex"
    }
  }
}
.vscode/mcp.json
{
  "mcpServers": {
    "gate-dex": {
      "url": "https://api.gatemcp.ai/mcp/dex"
    }
  }
}

Available tools 47

Read directly from the server with tools/list, grouped by what they act on. If a tool disappears, we record the date.

dex
dex_agentic_report
Register agentic wallet addresses with the wallet service.
dex_auth_gate_login_poll
Poll Gate OAuth; returns pending/ok/error. [write] On ok: replace mcp_token unless linked_to_google_session is true. Pass auto_replace_binding=true to rebind exchange UID on new Gate session.
dex_auth_gate_login_start
Start Gate device OAuth; returns verification_url. Pass link_mcp_token on a Google session to bind Gate UID without replacing mcp_token.
dex_auth_google_login_poll
Poll Google OAuth flow; returns pending/ok/error. [write] On ok: immediately replace stored mcp_token with login_result.mcp_token — new token is tied to a different account.
dex_auth_google_login_start
Returns browser verification URL for Google device OAuth.
dex_auth_login_gate_wallet
Exchange Gate OAuth code for MCP token. [write] On success, immediately replace any stored mcp_token — new token is tied to a different account.
dex_auth_login_google_wallet
Exchange Google OAuth code for MCP token. [write] On success, immediately replace any stored mcp_token — new token is tied to a different account.
dex_auth_logout
Revoke the MCP session identified by mcp_token.
dex_chain_config
Returns chain config (networkKey, accountKey, chainID). Use the returned chain value in all subsequent transfer/sign/broadcast tools.
dex_market_get_kline
OHLCV candles by period and window. Volume aggregates→get_tx_stats. Pool events→get_pair_liquidity.
dex_market_get_pair_liquidity
AMM pool deposit and withdrawal events. Candlesticks→get_kline. Volume stats→get_tx_stats.
dex_market_get_tx_stats
Per-interval buy/sell volume and tx counts (5m–24h). Candlesticks→get_kline. Pool events→get_pair_liquidity.
dex_rpc_call
Proxy a JSON-RPC call to a blockchain node.
dex_token_get_coin_info
Price, market snapshot, metadata, optional top holders. Security audit→get_risk_info.
dex_token_get_coins_range_by_created_at
Tokens launched within a given time window; chain optional for all networks.
dex_token_get_risk_info
Contract security audit (honeypot, tax, ownership flags). Price and market stats→get_coin_info.
dex_token_list_cross_chain_bridge_tokens
Receivable assets on target chain for a source token. Same-chain trading→list_swap_tokens.
dex_token_list_swap_tokens
Tradable assets on a chain; tag selects favorites or recommendations. Bridge targets→list_cross_chain_bridge_tokens.
dex_token_ranking
Top movers by 24h price change; direction selects gainers vs losers. Single token→get_coin_info.
dex_tx_approve_preview
Build ERC20/SPL approve or revoke tx (does not broadcast). Sign with dex_wallet_sign_transaction after user confirmation.
dex_tx_detail
Fetch transaction detail by on-chain hash. → swap_detail for swap order detail by order ID.
dex_tx_gas
Estimate on-chain gas price and gas limit for a given tx.
dex_tx_get_sol_unsigned
Solana only: build fresh native SOL unsigned tx with latest blockhash; avoids Blockhash not found. Sign immediately. → transfer_preview for full summary first.
dex_tx_list
List wallet transaction history (transfers). → swap_history_list for swap/bridge orders. → tx_detail for single tx by hash.
dex_tx_send_raw_transaction
Broadcast a signed tx to the chain. [write] Requires user confirmation after transfer preview and prior signing via dex_wallet_sign_transaction.
dex_tx_swap_checkin_preview
Returns check-in fields for a swap stage (approve or swap). Call after prepare and before terminal tx-checkin script.
dex_tx_swap_detail
Fetch swap order detail by order ID from swap_submit. → tx_detail for detail by on-chain hash.
dex_tx_swap_history_list
List swap/bridge order history with pagination; includes single-chain and cross-chain. → tx_list for transfer history.
dex_tx_swap_prepare
Stage a swap session (server-side build only); returns swap_session_id. Does not sign or submit. Call after quote confirmed by user.
dex_tx_swap_quote
Returns swap route and pricing. Call before swap_prepare; show result to user before proceeding. → transfer_preview for direct token send (not exchange).
dex_tx_swap_sign_approve
[write] Sign the ERC20 approve tx for a staged EVM swap. Requires need_approved=true in prepare result.
dex_tx_swap_sign_swap
[write] Sign the main swap tx for a staged session. EVM: call sign_approve first if need_approved=true. Solana: generates a fresh signable payload.
dex_tx_swap_submit
[write] Broadcast a staged swap to the chain. Does not sign. Requires all signing steps complete (sign_approve if EVM+approval, then sign_swap).
dex_tx_transfer_preview
Build unsigned transfer tx; displays summary (sender, recipient, amount, gas). Returns unsigned_tx_hex and txBundle for check-in. Does not broadcast. Wait for user confirmation before signing. → swap_quote/swap_prepare for token exchange.
dex_tx_x402_checkin_preview
Prepare Gate Verify tx_checkin for x402 (EVM exact / EIP-3009 only): returns tx_checkin.message (64-hex digest) and x402_payment_required_b64 without signing. Flow: 1) this tool 2) Gate Verify tx_checkin with returned tx_checkin fields 3) dex_tx_x402_fetch with same url/body/headers, checkin_token, and the same x402_payment_required_b64. If x402_payment_required_b64 is omitted, performs one HTTP call and requires HTTP 402.
dex_tx_x402_fetch
[write] Send an HTTP request to the given URL. If the server responds with 402 Payment Required, pay via x402 (Coinbase-style: USDC EIP-3009 / Permit2 on EVM, SPL on Solana), retry with PAYMENT-SIGNATURE. REQUIRED: Gate Verify tx_checkin before signing; pass checkin_token. For EVM EIP-3009, use dex_tx_x402_checkin_preview first so the agent does not build digest manually; then pass checkin_token and the same x402_payment_required_b64 from preview. CoinGecko Pro x402: do not send x-cg-pro-api-key; default network Base unless x402_preferred_network=solana.
dex_wallet_bind_exchange_uid
Bind Gate exchange UID to session. Standalone Gate session only; gateUid must equal login_result.gate_uid from Gate OAuth. → replace_binding to rebind.
dex_wallet_get_addresses
Returns address map by chain type (EVM, SOL, etc.). Call before transfer/swap tools to get the sender address.
dex_wallet_get_bindings
Returns current Gate UID binding for the session wallet.
dex_wallet_get_token_list
Token balances and prices with pagination; filter by network_keys. → get_total_asset for portfolio summary only.
dex_wallet_get_total_asset
Total portfolio value and 24h change. → get_token_list for per-token balance detail.
dex_wallet_get_wallet_type
Returns walletAddress, walletType, gateUid. With for_withdraw_to_exchange or for_gate_oauth_bind, also starts Gate OAuth when gateUid is missing.
dex_wallet_google_gate_bind_start
Google sessions only: starts Gate OAuth to bind Gate exchange UID to this session. mcp_token stays unchanged after poll.
dex_wallet_replace_binding
Rebind Gate exchange UID. [write] newUid must equal login_result.gate_uid from a fresh Gate OAuth. Blocked for gate_mcp/gate_quick sessions and Google sessions.
dex_wallet_sign_message
Sign a 32-byte hex message with wallet key. [write] Requires checkin_token from terminal tx-checkin. → sign_transaction for raw tx signing.
dex_wallet_sign_transaction
Sign a raw unsigned transaction. [write] Requires user confirmation after transfer preview and checkin_token from terminal tx-checkin. → dex_tx_send_raw_transaction to broadcast.
dex_withdraw_deposit_address
Fetch Gate exchange deposit address for the session-bound Gate UID. [write] amount must be ≥ min_deposit_amount; do not pass uid — it is resolved from the session.

Endpoints

URLTransportStateLatencyChecked
https://api.gatemcp.ai/mcp/dex streamable-http answering 476 ms 6 min ago

Gate DEX MCP — questions

Answers built from our own checks of this server.

What can Gate DEX MCP do?
It exposes 47 tools, read directly from the server on our last check. Among them: dex_agentic_report, dex_auth_gate_login_poll, dex_auth_gate_login_start, dex_auth_google_login_poll, dex_auth_google_login_start, dex_auth_login_gate_wallet and 41 more. The full list with descriptions is on this page — we take it from the server itself via tools/list, not from a README. How MCP servers expose tools in the first place →
Is Gate DEX MCP working right now?
We send a real MCP handshake every 15 minutes. Over the last 24 hours 91 of 91 checks got a reply (100.0%), average response time 646 ms. The bar chart above shows every period we have measured.
How do I connect Gate DEX MCP?
Copy the ready config from this page — we generate it for Claude Code, Claude Desktop, Codex, Cursor and VS Code, each with the file path that client actually reads. It is a remote server, so there is nothing to install — the client connects to the address.
Does Gate DEX MCP need an API key?
No. Gate DEX MCP completed a full MCP handshake with us as an anonymous client and listed its tools without asking for anything. All 47 of them are readable on this page. This is what we observed, not what the docs claim.
How fast is Gate DEX MCP?
It answers our handshake in 646 ms on average, which is faster than 14% of all working MCP servers we measure. That is on the slow side — worth knowing if the tool sits inside an interactive loop. The comparison comes from our own checks across the whole registry, every 15 minutes.
Is Gate DEX MCP open source?
Yes — it is published under the MIT licence, written in Shell, 33 stars on GitHub and 6 open issues. The source link is on this page, so you can read exactly what it does with your data before you connect it.