Skip to main content
Glama
kukapay

Alpha Arena MCP

by kukapay

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
NETWORKNoNetwork to use: 'testnet' or 'main'testnet
MAIN_ACCOUNT_ADDRESSYesYour Hyperliquid main account address
API_ACCOUNT_PRIVATE_KEYYesYour 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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
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

NameDescription
nof1_system_promptExpert cryptocurrency analysis system prompt with trading recommendations
nof1_user_promptUser prompt for cryptocurrency trading analysis with market state and account information

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.2/5.0

Scored across 5 tools

Disambiguation5/5

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.

Naming Consistency5/5

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.

Tool Count5/5

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.

Completeness4/5

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.

Maintenance

ActivityInactive
ResponsivenessNo issues