MCPify
MCPify is a non-custodial trading terminal for Hyperliquid perpetual futures with a hosted MCP server.
Что умеет
- Get Markets: Use this when the user asks which perpetual markets are tradable on MCPify (Hyperliquid), or for a market overview with prices, 24h change, volume, funding and max leverage.
- Get Price: Use this when the user asks the current price of a specific coin on Hyperliquid (mark price, 24h change, volume, funding).
- Get Orderbook: Use this when the user wants the live order book (bids/asks) for a Hyperliquid perp market.
Какие данные видит
Нужен ли аккаунт
Не нужен: сервер работает без входа
MCPify is a non-custodial trading terminal for Hyperliquid perpetual futures with a hosted MCP server. Your own wallet is the Hyperliquid account: the connector reads live markets and your positions, and — only after you arm Agent Trading — places orders with on-chain leverage under server-enforced caps (margin per order, leverage, orders per minute/day). No withdraw or transfer tool exists, and the agent key it signs with is restricted by Hyperliquid to trading actions.
Read tools (always available): get_markets, get_price, get_orderbook, get_candles, get_my_account, get_my_open_orders, get_my_trade_history, get_my_order_records
Trading tools (user-armed): preview_order, place_order, close_position, set_position_tp_sl, cancel_order
Connect: sign in with your wallet at https://mcpify.trade, generate a connector key at https://mcpify.trade/mcp and pass it as the token parameter (or Authorization: Bearer ). Without a key the server answers discovery (tools/list) only. Supports MCP Apps interactive cards in capable hosts.
Список инструментов сервера (13)
Технические названия из tools/list. Нужны только разработчикам.
| get_markets | Use this when the user asks which perpetual markets are tradable on MCPify (Hyperliquid), or for a market overview with prices, 24h change, volume, funding and max leverage. |
| get_price | Use this when the user asks the current price of a specific coin on Hyperliquid (mark price, 24h change, volume, funding). |
| get_orderbook | Use this when the user wants the live order book (bids/asks) for a Hyperliquid perp market. |
| get_candles | Use this when the user wants OHLCV candle history for a Hyperliquid perp market (for analysis or charting). |
| get_my_account | Use this when the user asks about THEIR MCPify account: balance, withdrawable, open positions with PnL and liquidation prices, and whether agent trading is armed. |
| get_my_open_orders | Use this when the user asks for their open/resting orders on Hyperliquid (including TP/SL trigger orders). Returns each order's oid for cancellation. |
| get_my_trade_history | Use this when the user asks for their recent fills/executions on Hyperliquid (live venue truth: price, size, fee, realized PnL). |
| get_my_order_records | Use this when the user asks what orders were placed through MCPify (our audit records, including which source placed them: web, mcp agent, admin) — successes and rejections alike. |
| preview_order | Use this BEFORE place_order whenever the user wants to open a position: it validates and sizes the order (fresh est. entry, size after rounding, est. liquidation, TP/SL sanity, MCP caps) WITHOUT placing anything, and shows a proposal card the user can confirm from. Read-only and always safe to call. If the user confirms, call place_order with the same arguments. |
| place_order | Use this when the user explicitly asks to open a perp position or place an order on Hyperliquid via MCPify. Real funds — ALWAYS call preview_order with the same arguments first, show the user the proposal, and get their explicit confirmation; place_order is refused unless a matching preview ran within the last 10 minutes. Requires Agent Trading enabled on the MCPify settings page. |
| close_position | Use this when the user asks to close (fully or partially) an open Hyperliquid position. Risk-reducing: works whenever agent trading is armed. |
| set_position_tp_sl | Use this when the user asks to set or update take-profit / stop-loss on an open Hyperliquid position. Replaces any existing TP/SL triggers for that coin. |
| cancel_order | Use this when the user asks to cancel a resting or trigger order by its oid (from get_my_open_orders). |