Skip to main content
Glama

AlgoVault — Crypto Quant Trade Calls

scan_trade_calls

Read-only

Returns ranked BUY SELL HOLD trade calls across the top crypto perpetual futures by open interest — one scan for whole-market coverage, each with confidence and market regime. Use this for breadth; use get_trade_call for per-coin depth and reasoning. Read-only: reads live exchange APIs, places no orders.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
topNNoHow many top perps by open interest to scan, 1 to 100 (default 20).
limitNoMax ranked calls to return, 1 to 100 (default 10). Non-HOLD ranked first.
rankByNoUniverse lens: oi (default) volume gainers losers movers funding_positive funding_negative volatility oi_change (aliases vol gain lose move pfr nfr atr oid). funding_*/volatility/oi_change rank among the most-liquid perps; oi_change = real 24h open-interest %Δ.oi
oiBasisNoOI-delta basis for rankBy=oi_change: notional (default, USD) or contracts (base-coin, price-independent). Ignored by other lenses.notional
exchangeNoCrypto venue (default Binance), e.g. Binance Bybit OKX Bitget Hyperliquid.BINANCE
timeframeNoCandle timeframe, 1m to 1d for the scan. Default 15m intraday.15m
includeHoldsNoInclude HOLD calls after non-HOLD (default false).
minConfidenceNoOptional confidence floor, 0 to 100, applied to non-HOLD trade calls.
oiChangeWindowNoOI-delta window for rankBy=oi_change: 1h, 4h, or 24h (default 24h). Ignored by other lenses.24h
minLiquidityUsdNoOptional USD liquidity floor applied to the scan universe: notional open interest, or 24h volume on venues that expose no bulk OI. Omitted means no floor.
includeReasoningNoEnrich each non-HOLD call with price, the top 2-3 drivers, and one-line reasoning (default false → bare verdict cells). HOLDs stay bare. Same per-call detail as get_trade_call.

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false, and the description reinforces this with 'Read-only: reads live exchange APIs, places no orders.' It adds further behavioral context beyond annotations: the tool consumes live exchange data (real-time, not cached) and a single call covers the entire universe via one scan, returning a sortable list with confidence and regime metadata.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences, each with a distinct job: (1) the verb, resource, scope, and return fields, (2) routing to the right sibling, (3) safety behavior. The most decision-relevant information is front-loaded and there are no filler words, placeholder text, or redundant restatements of the tool name.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity — 11 optional parameters, 4 enums, no output schema — the schema descriptions handle the parameter semantics fully, and the description covers the return shape ('each with confidence and market regime'). This is nothing missing about the unexamined parameter usage guidance is clear, but a brief note about the result ordering (non-HOLD ranked first) is delegated to the schema, which is acceptable.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all 11 optional parameters are fully documented in the schema (e.g., topN, rankBy lenses, oiBasis, exchange list, timeframe, includeHolds, minConfidence). The description adds no parameter-level detail of its own, but it doesn't need to; the schema carries the full parameter documentation burden, and the baseline of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource: it returns 'ranked BUY SELL HOLD trade calls across the top crypto perpetual futures by open interest'. It also distinguishes itself from the sibling get_trade_call by framing this tool as the whole-coverage breadth entry point, so an agent knows exactly what this scan does versus the per-coin depth tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly routes the agent: 'Use this for breadth; use get_trade_call for per-coin depth and reasoning.' This gives a clear selection condition (whole-market breadth vs. single-coin depth) and names the exact alternative, leaving no ambiguity about when to pick this tool over its closest sibling.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation2/5

get_trade_call and get_trade_signal are exact duplicates, with the latter explicitly marked as an alias, making it impossible to distinguish between them by purpose. Other tools are reasonably distinct, but this redundancy creates real ambiguity in tool selection.

Naming Consistency5/5

All tools follow a consistent lowercase snake_case verb_noun pattern: get_*, scan_*, search_*, chat_*. The naming clearly indicates action and resource, and there are no mixed conventions or stylistic inconsistencies.

Tool Count5/5

Eight tools is well-scoped for a crypto quant signal server. Each tool covers a distinct need from knowledge retrieval to market scanning, and the count is neither bloated nor thin.

Completeness4/5

The tool surface covers the core read-only workflow: individual trade calls, market-wide scans, funding arb, market regime, track record, and knowledge lookup. Minor gaps like per-venue deeper drill-down or explicit historical signal retrieval are not critical but would round out the set.