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.
- Query available methods from cryptocurrency exchange SDKs
- Retrieve detailed documentation for specific methods
- Offline documentation - all documentation is available offline, no internet connection required
| Exchange SDK | Status |
|---|---|
| Gate.io SDK Docs | ✅ |
| Bybit SDK Docs | ✅ |
| Binance SDK Docs WIP | ✅ |
| Bitget SDK Docs WIP | ✅ |
| OKX SDK Docs | ✅ |
| OKX DEX | ✅ |
{
"mcpServers": {
"crypto-exchange-mcp": {
"command": "npx",
"args": ["-y", "crypto-exchange-mcp@latest"]
}
}
}This MCP service provides the following tools for each exchange:
gate_methods- Get all API method lists and related documentation supported by Gate Exchange SDKgate_method_detail- Query detailed usage information for specific API methods in Gate Exchange SDK
okx_methods- Get all API method lists and related documentation supported by OKX Exchange SDKokx_method_detail- Query detailed usage information for specific API methods in OKX Exchange SDK
okx_dex_api_methods- Get all API method lists and related documentation supported by OKX DEX APIokx_dex_api_method_detail- Query detailed usage information for specific API methods in OKX DEX API
bybit_methods- Get all API method lists and related documentation supported by Bybit Exchange SDKbybit_method_detail- Query detailed usage information for specific API methods in Bybit Exchange SDK
binance_methods- Get all API method lists and related documentation supported by Binance Exchange SDKbinance_method_detail- Query detailed usage information for specific API methods in Binance Exchange SDK
bitget_methods- Get all API method lists and related documentation supported by Bitget Exchange SDKbitget_method_detail- Query detailed usage information for specific API methods in Bitget Exchange SDK
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.
- Node.js >= 22
# Install dependencies
pnpm installpnpm run build
pnpm run dev
pnpm run inspect
pnpm run generateOfflineData
Contributions are welcome! If you'd like to add support for a new exchange, please follow the adapter pattern established in the codebase.
MIT