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

quantxdata-mcp

v1.1.0

Published

QuantXData MCP Server — Access real-time crypto market data from 123+ exchanges via MCP protocol. Trades, OHLCV, orderbooks, options, and more.

Readme

QuantXData MCP Server

Access real-time crypto market data from 123+ exchanges and 47,000+ instruments via the Model Context Protocol (MCP).

Works with Claude Desktop, Claude Code, Cursor, and any MCP-compatible AI agent.

Quick Start

npx -y quantxdata-mcp

Requires Node.js 18+ (uses native fetch).

Setup with Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "quantxdata": {
      "command": "npx",
      "args": ["-y", "quantxdata-mcp"],
      "env": {
        "QUANTXDATA_API_KEY": "your-api-key"
      }
    }
  }
}

Setup with Claude Code

claude mcp add quantxdata -e QUANTXDATA_API_KEY=your-api-key -- npx -y quantxdata-mcp

Setup with Cursor

Add to your Cursor MCP settings (.cursor/mcp.json):

{
  "mcpServers": {
    "quantxdata": {
      "command": "npx",
      "args": ["-y", "quantxdata-mcp"],
      "env": {
        "QUANTXDATA_API_KEY": "your-api-key"
      }
    }
  }
}

Free vs Authenticated

Some tools work without an API key (great for trying it out):

  • list_exchanges, list_instruments, list_options_exchanges, list_options_instruments, get_data_quality

Tools that require QUANTXDATA_API_KEY:

  • get_trades, get_aggregated_trades, get_multi_trades, get_orderbook, get_option_quotes, get_latest_tick, stream_live_data

Available Tools (18)

Market Data

| Tool | Description | |------|-------------| | list_exchanges | List 123+ crypto exchanges | | list_instruments | Browse 47,000+ trading pairs | | get_trades | Historical trade executions | | get_aggregated_trades | OHLCV candlestick data | | get_multi_trades | Cross-exchange trade comparison | | get_orderbook | L2 orderbook snapshots (5,000+ levels) | | get_option_quotes | Options Greeks, IV, prices | | list_options_exchanges | Options-enabled exchanges | | list_options_instruments | 3,500+ options contracts | | get_latest_tick | Real-time latest price | | get_data_quality | Exchange health monitoring | | stream_live_data | Recent trade stream |

User Management

| Tool | Description | |------|-------------| | get_user_profile | User account info | | get_balance | Account balance | | get_transactions | Transaction history | | get_usage_summary | API usage stats | | list_api_keys | Manage API keys | | create_api_key | Generate new API key |

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | QUANTXDATA_API_KEY | Yes | Your API key for authenticated endpoints | | QUANTXDATA_API_URL | No | API URL (default: https://api.quantxdata.ai) | | QUANTXDATA_PORTAL_URL | No | Portal URL for user management | | QUANTXDATA_PORTAL_JWT | No | JWT for user management tools |

Example Usage with Claude

"What's the current BTC price across exchanges?"

Claude will call get_latest_tick and list_exchanges to give you real-time data.

"Show me the last hour of ETH trades on Binance"

Claude will call get_aggregated_trades with the right parameters.

Get an API Key

Visit quantxdata.ai to get your API key.

License

MIT