Labsco
tickory logo

Tickory MCP Server

from tickory

Scheduled scans across all Binance spot and perpetual pairs using CEL rules (RSI, volume, MAs, price action). Runs server-side 24/7, fires webhooks on match, with delivery proof and alert explainability.

๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedAccount requiredAdvanced setup

Tickory MCP Server

Real-time crypto scanner alerts, ad hoc scan execution, and TradingView relay routing, delivered straight to your AI agent.

Tickory monitors Binance Futures markets using programmable CEL rules and TradingView relay routing. This MCP server lets any agent framework create scans, run saved or ad hoc scans, configure relay sources and routes, inspect relay traces, read alert events, and understand why alerts triggered โ€” all through the Model Context Protocol.

Tickory Server MCP server

Quick demo

You: "Create a scan that fires when RSI drops below 30 on any coin with volume over $100k"

Agent (via tickory_create_scan): Done โ€” scan "Oversold Bounce" created.

You: "Run it now"

Agent (via tickory_run_scan): 3 matches found: ETHUSDT, SOLUSDT, DOGEUSDT.

You: "Why did ETH match?"

Agent (via tickory_explain_alert_event): RSI-14 was 24.7, below your threshold of 30.
  Volume gate passed: $487k USDT > $100k minimum. CEL expression evaluated true.

Relay flow example

You: "Set up a TradingView relay to my Telegram"

Agent (via tickory_create_relay_source): Created source "Momentum Strategy".
  Webhook URL: https://api.tickory.app/api/webhooks/tradingview/src_123
  Payload template includes your source secret and TradingView placeholders.

Agent (via tickory_add_relay_route): Telegram relay route created.

You: "Why didn't my last webhook alert send?"

Agent (via tickory_list_relay_events): 1 recent event found for source src_123.
Agent (via tickory_get_relay_trace): Route route_123 failed downstream with timeout.
Agent (via tickory_replay_relay_event): Failed route queued for replay.

Tools

ToolDescription
tickory_list_scansList scans visible to the API key owner
tickory_get_scanFetch one scan by ID
tickory_create_scanCreate a new scan with CEL expression and hard gates
tickory_update_scanReplace an existing scan definition
tickory_run_scanTrigger a scan run immediately
tickory_run_ad_hoc_scanExecute a one-off expression immediately without creating a saved scan
tickory_describe_indicatorsDescribe available CEL variables, recommended guards, and example expressions
tickory_list_alert_eventsList alert events with cursor pagination
tickory_get_alert_eventFetch one alert event by UUID
tickory_explain_alert_eventExplain why an alert triggered or was suppressed
tickory_create_relay_sourceCreate a TradingView relay source and return the paste-ready TradingView setup payload
tickory_list_relay_sourcesList TradingView relay sources and direct-route summaries
tickory_add_relay_routeAdd one direct relay route to telegram, webhook, discord, or email
tickory_list_relay_eventsList recent inbound relay events for one TradingView source
tickory_get_relay_traceFetch the full lifecycle trace for one relay source event
tickory_replay_relay_eventReplay one failed relay route when the backend allows it

All tools return schema_version: "v1" for contract stability.

tickory_run_scan executes an existing saved scan by scan_id. tickory_run_ad_hoc_scan executes a one-off expression and does not create or update a saved scan, so the returned run payload may have an empty scan_id.

Error handling

Upstream HTTP errors are mapped to deterministic MCP error codes:

HTTP StatusMCP CodeRetryable
400invalid_requestNo
401unauthorizedNo
403forbiddenNo
404not_foundNo
409conflictNo
429rate_limitedYes
5xxupstream_errorYes

Scoped API key permissions

ScopeWhat it allows
read_eventsRead alert events, relay traces, scan runs, activity
manage_scansCreate/read/update/delete scans, execute scans
manage_routingCreate/manage relay sources and routes

Create keys with the minimum scopes needed. See the developer docs for details.

Protocol versions

This server negotiates MCP protocol versions: 2024-11-05, 2025-03-26, 2025-06-18, 2025-11-05, and 2025-11-25.