MCP Hub
Back to servers

Neleus MCP

Enables interaction with Hyperliquid markets for technical analysis, order book data retrieval, and cryptocurrency trading. Supports read-only market access without credentials and authenticated trading operations via private key configuration.

glama
Updated
Apr 5, 2026

neleus-mcp

MCP server exposing Neleus Hyperliquid tools to Claude

Run market analysis, inspect order books, search docs, and place trades from Claude with Neleus-backed MCP tools.


Mock Questions

  • What’s the current RSI and trend for SOL?
  • Analyze ETH on the 1h timeframe.
  • Show support and resistance for BTC.
  • Scan perps for the strongest bullish setups.
  • Which markets have rising momentum right now?
  • What does the order book look like for HYPE?
  • Show bid/ask imbalance for SOL.
  • List the Neleus docs pages.
  • Search the docs for limit orders.
  • Read the docs page for market orders.
  • Place a limit buy for ETH at 3200.
  • Show my open orders.
  • Cancel my latest order.
  • Show my recent fills.

Preview

 Neleus MCP demo showing SOL market analysis in Claude

## Tools

Market (no credentials)

ToolDescription
neleus_list_marketsList markets by scope: perps, all-perps, hip3, spot, hip4
neleus_analyze_marketTA analysis — RSI, trend, Bollinger bands, support/resistance
neleus_scan_marketsRank markets by composite TA score
neleus_get_order_bookL2 order book snapshot with spread and imbalance

Docs (no credentials)

ToolDescription
neleus_list_docsList Neleus documentation pages
neleus_search_docsSearch the Neleus docs
neleus_read_docRead a documentation page by route

Trading (requires HYPERLIQUID_SIGNER_PRIVATE_KEY)

ToolDescription
neleus_place_limit_orderPlace a limit order
neleus_place_market_orderPlace a market order
neleus_cancel_orderCancel an open order by ID
neleus_get_open_ordersList open orders
neleus_get_fillsRecent fill history

Installation

1. Install uv (once)

uvx is required to run MCP servers without managing Python environments manually.

# macOS / Linux
curl -LsSf https://astral.sh/uv/install.sh | sh

# or via Homebrew
brew install uv

2. Add to Claude Code

claude mcp add neleus -- uvx neleus-mcp

With trading credentials:

claude mcp add neleus \
  -e HYPERLIQUID_SIGNER_PRIVATE_KEY=0x... \
  -e HYPERLIQUID_TESTNET=false \
  -- uvx neleus-mcp

2. Add to Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "neleus": {
      "command": "uvx",
      "args": ["neleus-mcp"]
    }
  }
}

With trading credentials:

{
  "mcpServers": {
    "neleus": {
      "command": "uvx",
      "args": ["neleus-mcp"],
      "env": {
        "HYPERLIQUID_SIGNER_PRIVATE_KEY": "0x...",
        "HYPERLIQUID_TESTNET": "false"
      }
    }
  }
}

Environment variables

VariableRequiredDescription
HYPERLIQUID_SIGNER_PRIVATE_KEYTrading onlyWallet private key (0x...)
HYPERLIQUID_TESTNETNotrue to use testnet for all tools
NELEUS_DOCS_URLNoOverride the docs manifest URL
NELEUS_DOCS_MANIFEST_PATHNoUse a local manifest file (offline/dev)

Notes

  • HIP-4 outcome markets require testnet=true.
  • Trading tools raise PermissionError if HYPERLIQUID_SIGNER_PRIVATE_KEY is not set.
  • Docs are fetched from the live Neleus docs site and cached for 1 hour.

Reviews

No reviews yet

Sign in to write a review