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 | ✅ |
Bitget SDK Docs | ✅ |
OKX SDK Docs | ✅ |
OKX DEX | TODO |
{
"mcpServers": {
"crypto-exchange-mcp": {
"command": "npx",
"args": ["-y", "crypto-exchange-mcp@latest"]
}
}
}
This MCP service provides the following tools:
Query Exchange SDK supported methods
- Lists all available methods for the exchange SDKQuery Exchange SDK method usage information
- Gets detailed documentation for a specific methodQuery Exchange SDK README
- Gets the README content of the exchange SDK project
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 install
pnpm run build
pnpm run dev
pnpm run inspect
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