Tickory MCP Server
OfficialIntegrates with Binance Futures to monitor crypto markets using programmable CEL rules, allowing for the creation and management of custom scans, real-time alert event tracking, and detailed analysis of market indicators.
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.
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.Install
npm / npx
npx @tickory/mcpThe npm package downloads the matching GitHub Release binary for macOS and Linux during install, so npx @tickory/mcp works without a separate build step.
Go install
go install github.com/tickory/tickory-mcp@latestPre-built binaries
Download from GitHub Releases for Linux and macOS (amd64/arm64).
Build from source
git clone https://github.com/tickory/tickory-mcp.git
cd tickory-mcp
go build -o tickory-mcp .Setup
Get a Tickory account at tickory.app
Create a scoped API key in your dashboard under Settings > API Keys
Configure the MCP server:
export TICKORY_API_BASE_URL=https://api.tickory.app
export TICKORY_API_KEY=tk_xxxxxxxx_yyyyyyyyyyyyyyyyyyyyyyyyRelay workflows require API keys with both manage_routing and read_events. Saved-scan and ad hoc scan execution both require manage_scans.
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"tickory": {
"command": "npx",
"args": ["@tickory/mcp"],
"env": {
"TICKORY_API_BASE_URL": "https://api.tickory.app",
"TICKORY_API_KEY": "tk_xxxxxxxx_yyyyyyyyyyyyyyyyyyyyyyyy"
}
}
}
}Claude Code
Add to your .mcp.json:
{
"mcpServers": {
"tickory": {
"command": "npx",
"args": ["@tickory/mcp"],
"env": {
"TICKORY_API_BASE_URL": "https://api.tickory.app",
"TICKORY_API_KEY": "tk_xxxxxxxx_yyyyyyyyyyyyyyyyyyyyyyyy"
}
}
}
}Cursor / Windsurf / other MCP clients
Point either to npx @tickory/mcp or to the standalone tickory-mcp binary with the environment variables above. The server uses stdio (newline-delimited JSON-RPC 2.0).
Tools
Tool | Description |
| List scans visible to the API key owner |
| Fetch one scan by ID |
| Create a new scan with CEL expression and hard gates |
| Replace an existing scan definition |
| Trigger a scan run immediately |
| Execute a one-off expression immediately without creating a saved scan |
| Describe available CEL variables, recommended guards, and example expressions |
| List alert events with cursor pagination |
| Fetch one alert event by UUID |
| Explain why an alert triggered or was suppressed |
| Create a TradingView relay source and return the paste-ready TradingView setup payload |
| List TradingView relay sources and direct-route summaries |
| Add one direct relay route to telegram, webhook, discord, or email |
| List recent inbound relay events for one TradingView source |
| Fetch the full lifecycle trace for one relay source event |
| Replay 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.
Configuration
Variable | Required | Default | Description |
| Yes | — | Tickory API base URL |
| Yes | — | Scoped API key ( |
| No |
| HTTP timeout for API requests |
CLI flags (--api-base-url, --api-key, --timeout) override environment variables.
Error handling
Upstream HTTP errors are mapped to deterministic MCP error codes:
HTTP Status | MCP Code | Retryable |
400 |
| No |
401 |
| No |
403 |
| No |
404 |
| No |
409 |
| No |
429 |
| Yes |
5xx |
| Yes |
Scoped API key permissions
Scope | What it allows |
| Read alert events, relay traces, scan runs, activity |
| Create/read/update/delete scans, execute scans |
| Create/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.
License
MIT
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tickory/tickory-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server