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 🙏

© 2025 – Pkg Stats / Ryan Hefner

crypto-exchange-mcp

v1.4.6

Published

[![npm version](https://img.shields.io/npm/v/crypto-exchange-mcp.svg)](https://www.npmjs.com/package/crypto-exchange-mcp) [![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/flytam/exchange-sdk-mcp/npm-publish.yml?labe

Readme

Crypto Exchange SDK Documentation MCP

npm version GitHub Actions Workflow Status

中文文档

A Model Context Protocol (MCP) service designed to help developers easily access documentation when integrating with cryptocurrency exchange APIs. This tool provides comprehensive offline documentation for multiple cryptocurrency exchanges, making it convenient to query API methods and usage information without requiring an internet connection.

Features

  • Query available methods from cryptocurrency exchange SDKs
  • Retrieve detailed documentation for specific methods
  • Offline documentation - all documentation is available offline, no internet connection required

Currently Supported Exchanges

| Exchange SDK | Status | | -------------------------------------------------------------------------------------------------------------- | ------ | | Gate.io SDK Docs | ✅ | | Bybit SDK Docs | ✅ | | Binance SDK Docs WIP | ✅ | | Bitget SDK Docs WIP | ✅ | | OKX SDK Docs | ✅ | | OKX DEX | ✅ |

Configuration

{
  "mcpServers": {
    "crypto-exchange-mcp": {
      "command": "npx",
      "args": ["-y", "crypto-exchange-mcp@latest"]
    }
  }
}

Usage

This MCP service provides the following tools for each exchange:

Gate.io

  • gate_methods - Get all API method lists and related documentation supported by Gate Exchange SDK
  • gate_method_detail - Query detailed usage information for specific API methods in Gate Exchange SDK

OKX

  • okx_methods - Get all API method lists and related documentation supported by OKX Exchange SDK
  • okx_method_detail - Query detailed usage information for specific API methods in OKX Exchange SDK

OKX DEX

  • okx_dex_api_methods - Get all API method lists and related documentation supported by OKX DEX API
  • okx_dex_api_method_detail - Query detailed usage information for specific API methods in OKX DEX API

Bybit

  • bybit_methods - Get all API method lists and related documentation supported by Bybit Exchange SDK
  • bybit_method_detail - Query detailed usage information for specific API methods in Bybit Exchange SDK

Binance

  • binance_methods - Get all API method lists and related documentation supported by Binance Exchange SDK
  • binance_method_detail - Query detailed usage information for specific API methods in Binance Exchange SDK

Bitget

  • bitget_methods - Get all API method lists and related documentation supported by Bitget Exchange SDK
  • bitget_method_detail - Query detailed usage information for specific API methods in Bitget Exchange SDK

Architecture

The service is designed with extensibility in mind, making it easy to add support for new exchanges in the future. Each exchange is implemented as an adapter following a common interface, making it simple to add support for new exchanges.

Requirements

  • Node.js >= 22

Development

# Install dependencies
pnpm install

Build the project

pnpm run build

Development mode (watch for changes)

pnpm run dev

Test with MCP inspector

pnpm run inspect

Generate offline data for exchanges

pnpm run generateOfflineData

Contributing

Contributions are welcome! If you'd like to add support for a new exchange, please follow the adapter pattern established in the codebase.

License

MIT