Skip to main content
Glama
kvandre12-commits

WhaleSignal MCP

rank_watchlist

Turn any ticker list into a ranked watchlist by WhaleSignal conviction score, with highest conviction first. Prioritize high-scoring tickers for focused review.

Instructions

Rank a watchlist of tickers by WhaleSignal conviction score (highest first).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
topNo
tickersYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.2

TDQS

B3.4/5.0
Behavior3/5

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

The description discloses the essential behavior: ranking and sorting by conviction score highest first. With no annotations, the description does not mention how invalid tickers are handled, whether 'top' affects the result set, or any other operational caveats, though the output schema covers the return shape.

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?

The description is a single sentence with no filler, and the key ordering behavior is front-loaded. It is concise without sacrificing clarity.

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

Completeness3/5

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

The description is adequate for a simple two-parameter ranking tool, especially with an output schema present, but it leaves the agent to infer the meaning and impact of the optional 'top' parameter and to distinguish usage from conviction_score without explicit guidance.

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

Parameters2/5

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

Schema description coverage is 0%, so the description carries the parameter semantics burden. 'tickers' is partially explained by the phrase 'watchlist of tickers,' but the 'top' parameter is not explained at all and its behavior is left entirely to the schema.

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 action and resource: rank a watchlist of tickers by WhaleSignal conviction score, with an explicit ordering (highest first). This clearly differentiates it from sibling tools like conviction_score, which implies a single-score lookup rather than batch ranking.

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

Usage Guidelines2/5

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

No guidance is given for when to use this tool versus alternatives such as conviction_score, flow_alerts, or market_pulse. The agent must infer the intended use from the name and description alone.

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