Hyperliquid Mcp Trading

Created By
Doan Ngoc Son7 months ago
Model Context Protocol (MCP) server that integrates with Hyperliquid, a decentralized perpetual futures exchange. This server exposes Hyperliquid's trading APIs as MCP tools, allowing AI assistants like Claude to interact with the exchange programmatically.
Overview

What is Hyperliquid MCP Trading?

Hyperliquid MCP Trading is a Model Context Protocol (MCP) server that integrates with Hyperliquid, a decentralized perpetual futures exchange. This server exposes Hyperliquid's trading APIs as MCP tools, allowing AI assistants like Claude to interact with the exchange programmatically.

How to use Hyperliquid MCP Trading?

To use Hyperliquid MCP Trading, install the package via npm using the command npm i @sondn.contact/mcp-hyperliquid. Configure your Claude Desktop application with the necessary parameters, including your Hyperliquid wallet private key.

Key features of Hyperliquid MCP Trading?

  • Account & Position Management: Query positions, orders, and account information.
  • Market Data: Access real-time prices, order book data, and historical market statistics.
  • Trading Operations: Create, cancel, and modify orders, as well as manage positions.
  • Risk Management: Control leverage and monitor positions for risk assessment.

Use cases of Hyperliquid MCP Trading?

  1. Automating trading strategies using AI assistants.
  2. Real-time monitoring of market conditions and account performance.
  3. Executing trades based on predefined criteria through natural language commands.

FAQ from Hyperliquid MCP Trading?

  • What is the required setup?
    You need Node.js >= 18, the Claude Desktop app, and your Hyperliquid wallet private key.
  • Is it safe to use my private key?
    Yes, but ensure you never commit it to version control and only use it in the configuration file.
  • Can I test before going live?
    Yes, use the testnet for development and testing before trading with real funds.

Server Config

{
  "mcpServers": {
    "hyperliquid": {
      "command": "npx",
      "args": [
        "-y",
        "@sondn.contact/mcp-hyperliquid"
      ],
      "env": {
        "HYPERLIQUID_PRIVATE_KEY": "your_private_key_here",
        "HYPERLIQUID_TESTNET": "false"
      }
    }
  }
}
Project Info
Created At
7 months ago
Updated At
7 months ago
Author Name
Doan Ngoc Son
Star
-
Language
-
License
-

Recommend Servers

View All
Mnemom

14 hours ago
//beforeyouship — LLM Cost Modeling From Your Editor
@Indiegoing

Query realistic LLM cost models without leaving your editor. beforeyouship models the **true monthly cost** of an LLM app architecture — retries, prompt caching, batch discounts, infra overhead, and 3×/10× growth — across GPT-5.x, Claude, Gemini, DeepSeek, and more. Not a token calculator: a planning tool for the design phase, before you commit to a stack. **No API key needed to try it** — demo mode covers the six free-tier models. A Pro key from [beforeyouship.dev](https://beforeyouship.dev) unlocks the full 18-model catalog. ## What you can ask - "How much will a RAG chatbot cost at 10,000 requests/day?" - "Compare Claude Haiku vs Gemini Flash pricing for my workload" - "What's the cheapest model for a multi-step agent at scale?" - "Show me current per-token prices for Anthropic models" ## Tools ### `estimate_cost` Full cost model for an architecture at a given usage level. Returns Naive / Realistic / Worst Case monthly cost per model, 3×/10× growth scenarios, and an opinionated recommendation with reasoning. ### `get_model_prices` Current per-1M-token pricing — input, output, cached input, batch — with context windows and staleness metadata. ### `list_archetypes` Seven preset architecture patterns (simple chatbot, chatbot with history, RAG pipeline, multi-model router, coding assistant, document processor, multi-step agent) used as starting points for estimates. ## Setup **Claude Code:** ​```bash claude mcp add --transport http beforeyouship https://beforeyouship.dev/api/mcp ​``` **Cursor / other clients** — add a remote server: ​```json { "mcpServers": { "beforeyouship": { "type": "streamable-http", "url": "https://beforeyouship.dev/api/mcp" } } } ​``` Add an `Authorization: Bearer bys_...` header with a Pro key for the full catalog. ## Try it > Estimate the monthly cost of a RAG pipeline at 10,000 requests/day

13 hours ago
Docwand

13 hours ago