Skip to main content
Glama

get_signal_stats

Read-onlyIdempotent

Use this when the user asks for aggregate AI signal performance statistics over a specific period.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
periodNoTime period for statistics24h

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
totalNoSignals published in the period
pendingNoStill open at the end of the period
stoppedNo
winRateNotargetHits / resolved, as a percentage; null when nothing resolved
highCountNoHigh-importance signals
targetHitsNoSignals that reached a take-profit or locked profit

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, indicating a safe read operation. The description adds that it provides aggregate statistics over a period, which is useful but doesn't go beyond the annotation's safety profile. There's no contradiction, but the description doesn't add significant behavioral context beyond what annotations already imply, such as whether results are cached or computation occurs.

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

Conciseness4/5

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

The description is a single, short sentence that is front-loaded with the key purpose. It's concise and contains no waste, though it could have included a bit more specificity about what 'aggregate statistics' includes.

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?

The tool is simple (one parameter, no required fields, output schema exists), and the description adequately covers the purpose. With rich annotations and an output schema, the description doesn't need to explain return values or structures. It's mostly complete, though a bit more detail on what metrics are included could help.

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% for the single 'period' parameter, with a clear description and enum values. The description itself doesn't add parameter-level details, but the schema fully covers it. Baseline 3 is appropriate since the schema handles the parameter semantics.

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

Purpose4/5

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

The description clearly states it provides aggregate AI signal performance statistics over a specific period, using specific verb (get) and resource (signal performance statistics). It's distinguishable from siblings like get_signal_details (which likely returns individual signal details) and get_market_stats (market-wide stats), though it doesn't explicitly differentiate.

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

Usage Guidelines3/5

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

The description gives a clear when-to-use context ('when the user asks for aggregate AI signal performance statistics over a specific period'). However, it doesn't explicitly mention alternatives or when not to use this tool, so it lacks exclusionary guidance that would help differentiate from other statistics tools.

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
Disambiguation4/5

Most tools are clearly distinct, targeting different data categories (market data, signals, traders, account). Some potential overlap exists between get_price, get_candles, and get_market_stats, but their descriptions clarify the specific use cases. Overall, an agent can differentiate them reliably.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with the verb 'get' and a descriptive noun (e.g., get_candles, get_signals, get_trader_profile). This uniform naming makes it very predictable for an agent.

Tool Count5/5

With 15 tools, the count is within the ideal range for a domain-specific server. Each tool serves a distinct purpose related to market data, signals, and trader analytics, and none feel redundant or extraneous.

Completeness4/5

The tool set covers core read operations for market data, signals, traders, and account info, which aligns with the apparent purpose of a data-provider server. Minor gaps include lack of write operations (e.g., placing trades) or historical signal details beyond individual IDs, but these are not critical for a data-oriented service.