npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@ironflowsh/mcp

v0.6.0

Published

MCP server for Hyperliquid market data — trades, fills, liquidations, order books, HIP-3 + HIP-4 — for Claude Desktop, Cursor, and AI agents

Readme

@ironflowsh/mcp

MCP server for Ironflow — Hyperliquid trades, fills, liquidations, order books, HIP-3 builder markets, HIP-4 prediction outcomes, and full wallet analytics (open positions, funding payments, maker/taker split, full ledger), exposed as 36 tools for Claude Desktop, Cursor, and any MCP-compatible client.

Get a free API key in 30 seconds — email-only, no credit card. Or run with no key at all (10 req/min, 24h history, REST tools only).

Try it

Once installed, ask your AI agent things like:

"What was the biggest Hyperliquid liquidation in the last 24 hours?"

"Show me funding rates for all HIP-3 markets right now."

"List every HIP-4 prediction market that's currently live."

"Pull the order book for ETH-PERP and tell me where the largest bid wall sits."

"Set up a webhook trigger for any BTC-PERP trade above 100 BTC."

The agent picks the right tool, calls Ironflow, and answers with live data.

Install

# Run directly (no install)
npx @ironflowsh/mcp

# Or install globally
npm install -g @ironflowsh/mcp

Requires Node.js 18+.

Use with Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%/Claude/claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "ironflow": {
      "command": "npx",
      "args": ["-y", "@ironflowsh/mcp"],
      "env": {
        "IRONFLOW_API_KEY": "if_your_api_key"
      }
    }
  }
}

Restart Claude Desktop. The Ironflow tools appear under the tools panel.

Use with Cursor

Add to ~/.cursor/mcp.json (or per-project .cursor/mcp.json):

{
  "mcpServers": {
    "ironflow": {
      "command": "npx",
      "args": ["-y", "@ironflowsh/mcp"],
      "env": {
        "IRONFLOW_API_KEY": "if_your_api_key"
      }
    }
  }
}

Restart Cursor; the tools appear in the agent panel.

Use with other MCP clients

Any client that speaks the Model Context Protocol can connect. The server runs over stdio when invoked directly:

IRONFLOW_API_KEY=if_xxx npx @ironflowsh/mcp

Tools (32 total)

Market dataget_price, get_orderbook, get_recent_trades, get_candles, get_funding_rates, get_open_interest, get_liquidations, get_fills, get_mark_prices, get_deposits, get_withdrawals, get_order_statuses, get_vault_operations, list_markets

Analytics (Builder+) — get_net_flows, get_liquidation_levels, get_order_flow, get_vault_leaderboard, get_funding_stats

Export (Builder+) — export_data

Triggerslist_triggers, create_trigger, test_trigger, toggle_trigger, delete_trigger

Cohortslist_cohorts, get_cohort_addresses, delete_cohort

Account & statusget_me, get_status, get_status_metrics, get_status_history

Authentication

Without an API key the server runs in unauthenticated mode: 10 req/min, 24h history, REST tools only — useful for casual exploration or trying out the server. For higher limits, WebSocket streams, longer history, and Builder+ analytics, sign up for a free key at ironflow.sh/dashboard/login and pass it via IRONFLOW_API_KEY.

Configuration

| Env var | Default | |---|---| | IRONFLOW_API_KEY | — | | IRONFLOW_API_URL | https://api.ironflow.sh |

Links

License

MIT