Alpha Arena MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| NETWORK | No | Network to use: 'testnet' or 'main' | testnet |
| MAIN_ACCOUNT_ADDRESS | Yes | Your Hyperliquid main account address | |
| API_ACCOUNT_PRIVATE_KEY | Yes | Your API account private key for Hyperliquid |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| place_orderA | Place an order on Hyperliquid with optional market price, and auto-calculate TP/SL if not provided. Args: symbol: Trading pair, e.g., "BTC/USDC:USDC" side: 'buy' or 'sell' size: Order size (quantity) price: Limit price for main order (default: None, uses current market price) leverage: Leverage to set (default: 10) tp_price: Take profit price (default: None, auto-calculated) sl_price: Stop loss price (default: None, auto-calculated) Returns: Dict with order details or error |
| close_positionA | Close all positions for the specified trading pair on Hyperliquid. Args: symbol: Trading pair, e.g., "BTC/USDC:USDC" Returns: Dict with close order details or error |
| cancel_open_ordersA | Cancel all open orders for the specified trading pair on Hyperliquid. Args: symbol: Trading pair, e.g., "BTC/USDC:USDC" Returns: Dict with canceled orders details or error |
| account_infoA | Get and format the current account information. Returns: Formatted string with account details. |
| market_stateA | Get and format the current market state for a given symbol. Args: symbol: Trading pair, e.g., "BTC/USDC:USDC" Returns: Formatted string with market state details. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| nof1_system_prompt | Expert cryptocurrency analysis system prompt with trading recommendations |
| nof1_user_prompt | User prompt for cryptocurrency trading analysis with market state and account information |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Each tool targets a distinct action or resource: placing orders, closing positions, canceling orders, viewing account info, and viewing market state. No overlap or ambiguity between them.
All tool names use snake_case and follow a clear pattern. Action-oriented tools use verb_noun (place_order, close_position, cancel_open_orders), while informational tools use resource_state (account_info, market_state). The naming is consistent and predictable.
Five tools is well-scoped for a trading-focused server. Each tool serves a distinct purpose and covers the core trading workflow without redundancy or bloat.
The tool set covers the essential lifecycle: placing orders, closing positions, canceling orders, and retrieving account/market information. Minor gaps exist such as no explicit get_positions or get_open_orders tools, but account_info likely covers position details and the workflow is functional.