Skip to main content
Glama

get_system_counters

The sample size behind everything: signals sent, data points collected, days collecting. Small samples cannot prove an edge — this tells you exactly how small.

Returns: - signals_fired: Total number of trade signals generated - data_points: Total on-chain data points collected - days_collecting: How many days the system has been running

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description must carry the behavioral burden. It clearly explains that this is a read-only operation returning three counters and defines each counter's meaning. It does not mention side effects, rate limits, or other behavioral traits, but for a simple getter with no parameters and no mutation, the return-value explanation is sufficient. The description adds value by explaining what each number represents.

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 compact and well-structured: a one-line hook, a one-line cautionary note, and a three-line bulleted return list. Every sentence earns its place. There is no fluff, and the format makes the return fields easy to parse. It is front-loaded with the most important context ('sample size behind everything').

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

Completeness5/5

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

For a zero-parameter getter with an output schema, the description is complete. It explains the purpose, the use case, and each returned field's meaning. There is no missing information about authentication, side effects, or prerequisites. The output schema likely provides the structured return types, so the description doesn't need to redisclose them. This is fully sufficient for an agent to invoke and interpret results.

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

Parameters4/5

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

The tool has zero parameters, so the schema is trivially complete (100% coverage). The description doesn't need to add parameter semantics. Per the rubric, a baseline of 4 is appropriate for zero-parameter tools. No additional information about inputs is needed.

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 clearly states what the tool does: it returns sample-size related counters (signals_fired, data_points, days_collecting). It distinguishes itself from siblings like get_system_health (health status) and get_signal_history (historical data) by focusing on the aggregate counts behind the system's data collection. The specific verb 'returns' plus the explicit output list makes the purpose unmistakable.

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

Usage Guidelines4/5

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

The description provides an implicit usage context: 'Small samples cannot prove an edge — this tells you exactly how small.' This tells the agent when to use this tool (when assessing data sufficiency). It does not explicitly name alternatives or exclusions, but the context is clear enough for a zero-parameter getter. It could have explicitly said 'use this to check sample size before making conclusions,' but the intent is embedded.

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

Tools like get_convergence, get_directional_bias, and get_dashboard are related but clearly scoped: convergence checks sensor agreement, directional_bias gives the trade call, dashboard bundles everything. Mempool fees vs stats are distinct (rates vs pending tx). Some overlap exists between convergence/regime_current, but descriptions disambiguate well.

Naming Consistency5/5

All tools follow a consistent get_verb_noun pattern (get_block_tip, get_funding_divergence, get_system_health). The only exception is query_db, which uses 'query' instead of 'get', but it still follows the verb_noun structure and same snake_case style. No mixed conventions.

Tool Count4/5

15 tools is at the high end of the ideal range, but each serves a distinct function in a complex domain: sensor convergence, regime, funding, gamma, mempool, system health, audit. The Pro/free tier adds some apparent duplication (get_convergence vs get_directional_bias), but they address different questions.

Completeness5/5

The tool set covers the full workflow: convergence check, directional call, regime context, specialized indicators (funding, gamma, stablecoin flows, fee histogram), mempool data, system health, audit trail, and a queryable database. No obvious dead ends; public signal history and counters support verification.

Resources