kukapay/crypto-orderbook-mcp
An MCP server that analyzes order book depth and imbalance across major crypto exchanges.
Platform-specific configuration:
{
"mcpServers": {
"crypto-orderbook-mcp": {
"command": "npx",
"args": [
"-y",
"crypto-orderbook-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
An MCP server that analyzes order book depth and imbalance across major crypto exchanges, empowering AI agents and trading systems with real-time market structure insights.
git clone https://github.com/kukapay/crypto-orderbook-mcp.git
cd crypto-orderbook-mcp Use uv to install the required packages:
uv sync "mcpServers": {
"crypto-orderbook-mcp": {
"command": "uv",
"args": [ "--directory", "/absolute/path/to/crypto-orderbook-mcp", "run", "main.py" ]
}
}The server provides two main tools:
Prompt: "Calculate the order book metrics for BTC/USDT on Binance with a 1% depth range."
Expected Output (JSON object):
{
"exchange": "binance",
"symbol": "BTC/USDT",
"bid_depth": 123.45,
"ask_depth": 234.56,
"imbalance": 0.1234,
"mid_price": 50000.0,
"timeLoading reviews...