Pionex Trade

49 tools. 16 can modify or destroy data without limits.

15 destructive tools with no built-in limits. Policy required.

Last updated:

16 can modify or destroy data
33 read-only
49 tools total

Verified server · catalogue entry verified 05/07/2026 · full schemas captured for 47 of 49 tools

How to control Pionex Trade ↓

What Pionex Trade exposes to your agents

Read (33) Write / Execute (1) Destructive / Financial (15)

What Pionex Trade costs in tokens

9,032 tokens of tool definitions, loaded on every request
4.5% of a 200k context window
990 heaviest tool: pionex_bot_futures_grid_create
Critical Risk

The most dangerous Pionex Trade tools

16 of Pionex Trade's 49 tools can modify, destroy, or commit something on every call — and an agent calls them with no built-in limits.

How to control Pionex Trade

PolicyLayer is an MCP gateway — it sits between your AI agents and Pionex Trade, and nothing reaches the server without passing your rules. These are the rules we recommend:

Block financial tools by default
{
  "pionex_bot_futures_grid_adjust_params": {
    "deny_if": [
      {
        "conditions": [],
        "on_deny": "Requires human approval."
      }
    ]
  }
}

Financial tools should be explicitly enabled per use case, not open by default.

Deny destructive operations
{
  "pionex_bot_futures_grid_cancel": {
    "deny_if": [
      {
        "conditions": [],
        "on_deny": "Blocked by default. Requires approval."
      }
    ]
  }
}

Destructive tools should never be available to autonomous agents without human approval.

Rate limit write operations
{
  "pionex_bot_smart_copy_cancel": {
    "limits": [
      {
        "counter": "pionex_bot_smart_copy_cancel_per_hour",
        "window": "hour",
        "max": 30,
        "scope": "grant"
      }
    ]
  }
}

Prevents bulk unintended modifications from agents caught in loops.

Cap read operations
{
  "pionex_account_get_balance": {
    "limits": [
      {
        "counter": "pionex_account_get_balance_per_minute",
        "window": "minute",
        "max": 60,
        "scope": "grant"
      }
    ]
  }
}

Controls API costs and prevents retry loops from exhausting upstream rate limits.

  1. Create a free account and register Pionex Trade — nothing to install.
  2. Add these rules — paste them, or build them visually. Tune the limits to your setup.
  3. Point your MCP client (Claude, Cursor, anything) at your gateway URL.
ENFORCE POLICY ON PIONEX TRADE →

Instant setup, no code required.

All 49 Pionex Trade tools

FINANCIAL 11 tools
READ 33 tools
Read pionex_account_get_balance Query spot account balances for all currencies. Requires API key and secret in ~/.pionex/config.toml or env. Read pionex_bot_futures_grid_check_params Validate futures grid bot parameters before creating an order. Uses the same buOrderData structure as futures_ Read pionex_bot_futures_grid_get_order Get one futures grid bot order by buOrderId. Read pionex_bot_order_list List bot orders with optional filters and pagination. status: 'running' (default) or 'finished'. buOrderTypes: Read pionex_bot_smart_copy_check_params Validate smart copy bot parameters before creating an order. Pass quote_investment='0' to get the allowed rang Read pionex_bot_smart_copy_get_order Get one smart copy bot order by buOrderId. Read pionex_bot_spot_grid_adjust_params Adjust spot grid bot range or investment parameters. Read pionex_bot_spot_grid_check_params Validate spot grid bot parameters before creating an order. Uses the same buOrderData structure as spot_grid_c Read pionex_bot_spot_grid_get_ai_strategy Retrieve AI-recommended spot grid strategy parameters for a trading pair. Read pionex_bot_spot_grid_get_order Get one spot grid bot order by buOrderId. Read pionex_bot_spot_grid_profit Extract accumulated grid profit from a spot grid bot order. Read pionex_earn_dual_balances Get authenticated user's Dual Investment account balances. Requires View permission (API key + secret). Read pionex_earn_dual_delivery_prices Get historical settlement delivery prices for a Dual Investment pair. base is required; quote is optional but Read pionex_earn_dual_get_invests Batch query Dual Investment orders by client order IDs. Requires View permission (API key + secret). Read pionex_earn_dual_index Get real-time index price for a Dual Investment underlying asset. Both base and quote are required. Use USDXO Read pionex_earn_dual_open_products List currently open Dual Investment products for a specific trading pair and direction. DUAL_BASE: invest in b Read pionex_earn_dual_prices Get latest yield rates and investability status for Dual Investment products. All three parameters (base, quot Read pionex_earn_dual_records Get paginated Dual Investment history for the authenticated user. Requires View permission (API key + secret). Read pionex_earn_dual_symbols List all trading pairs supported by Dual Investment, optionally filtered by base currency. Supported quote cur Read pionex_market_get_book_tickers Get best bid/ask ticker(s). Optional symbol or type (SPOT/PERP). Read pionex_market_get_depth Get order book depth (bids and asks) for a symbol. Use for spread, liquidity, or best bid/ask. Read pionex_market_get_klines Get OHLCV klines (candlestick) for a symbol. Use for charts or historical price/volume. Read pionex_market_get_symbol_info Get symbol metadata (precision, min size, price limits). Call before placing orders to avoid amount/size filte Read pionex_market_get_tickers Get 24-hour ticker(s): open, close, high, low, volume, amount, count. Optional symbol or type (SPOT/PERP). Read pionex_market_get_trades Get recent trades for a symbol. Use for latest price and volume. Read pionex_orders_get_all_orders List order history for a symbol (filled and cancelled), with optional limit. Read pionex_orders_get_fills Get filled trades (fills) for a symbol in a time range. Requires API key. Returns up to 100 latest fills. Read pionex_orders_get_fills_by_order_id Get fills for a specific order by symbol and orderId. Read pionex_orders_get_open_orders List open (unfilled) orders for a symbol. Read pionex_orders_get_order Get a single order by order ID. Read pionex_orders_get_order_by_client_order_id Get a single order by client order ID. Read pionex_wallet_get_balance_full Query full account balance overview including spot (Bot Account) and futures (Trader Account), with per-coin p Read system_get_capabilities Return machine-readable server capabilities and module availability for agent planning.

Related servers

Other MCP servers with similar tools — same risk classification, starter policies for each.

Questions about Pionex Trade

Can an AI agent move money through the Pionex Trade MCP server? +

Yes. The Pionex Trade server exposes 11 financial tools including pionex_bot_futures_grid_adjust_params, pionex_bot_futures_grid_create, pionex_bot_futures_grid_reduce. Without a policy, an autonomous agent can call these with no spend caps, no rate limits, and no approval flow. PolicyLayer lets you block financial tools by default, require human approval, or set per-tool rate limits — enforced on every call.

Can an AI agent delete data through the Pionex Trade MCP server? +

Yes. The Pionex Trade server exposes 4 destructive tools including pionex_bot_futures_grid_cancel, pionex_bot_spot_grid_cancel, pionex_orders_cancel_all_orders. These permanently remove resources with no undo. PolicyLayer blocks destructive tools by default so they never reach the upstream server.

How do I prevent bulk modifications through Pionex Trade? +

The Pionex Trade server has 1 write tools including pionex_bot_smart_copy_cancel. Set a rate limit in your policy -- for example, 10 calls per hour prevents an agent from making more than 10 modifications per hour. PolicyLayer enforces this at the gateway, before calls reach Pionex Trade.

How many tools does the Pionex Trade MCP server expose? +

49 tools across 4 categories: Destructive, Execute, Read, Write. 33 are read-only. 16 can modify, create, or delete data.

How do I enforce a policy on Pionex Trade? +

Register the Pionex Trade MCP server in PolicyLayer, apply the suggested rules above (adjust the limits to your use case), and point your AI client at the PolicyLayer proxy URL instead of the server directly. Your agents keep the same tools; PolicyLayer evaluates every call against policy before it executes. Nothing to install, live in minutes.

Enforce policy on every Pionex Trade tool call.

Deterministic rules across all 49 Pionex Trade tools. Per-identity grants. Full audit log. Live in minutes. Nothing to install.

Instant setup, no code required.

49 Pionex Trade tools catalogued and risk-classified — across an index of 43,000+ MCP servers.

// GET IN TOUCH

Have a question or want to learn more? Send us a message.

Message sent.

We'll get back to you soon.