Connect AI agents to real-time crypto market scanning on Binance Futures. Create scans with CEL rules (e.g., rsi_14 < 30 && volume_quote > 100000), run them across all pairs, read alert events, and get explanations for why alerts fired or didn't. 9 tools, MIT license, works via npx @tickory/mcp.
Overview
What is Tickory?
Tickory is a real-time crypto market scanner for Binance Futures. It scans all pairs on schedule using programmable CEL rules and delivers alerts via Telegram, email, or webhook with proof of delivery, automatic retries, and explanations for why alerts fired or didn't.
What does the MCP server do?
It lets any AI agent (Claude, OpenClaw, etc.) interact with Tickory in natural language:
- Create scans - define conditions like
rsi_14 < 30 && volume_quote > 100000 - Run scans - execute immediately or on schedule
- Read alert events - "what fired in the last hour?"
- Explain alerts - "why did this alert fire?" / "why didn't it?"
- Describe indicators - list available CEL variables and examples
Example prompt
"Create a scan for RSI < 30 with volume above 100k on all Binance perps, run it, and tell me what matched."
Server Config
{
"mcpServers": {
"tickory": {
"command": "npx",
"args": [
"@tickory/mcp"
],
"env": {
"TICKORY_API_BASE_URL": "https://api.tickory.app",
"TICKORY_API_KEY": "tk_xxxxxxxx_yyyyyyyyyyyyyyyyyyyyyyyy"
}
}
}
}