Skip to main content
Glama

tickerbot_get_ticker_coverage

Data-coverage report for one ticker — which intervals and columns exist, from when, at what depth. The honesty endpoint: ask this before assuming a gap in bars/series is a data outage vs. genuinely-never-covered (e.g. fundamentals on non-equities). NOTE minute_tier.included:false is NOT a gap: it comes with on_demand:true — sub-hour bars for that symbol are fetched from the provider on first request (~3-10s, up to window_days per call) and served sub-second after.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tickerYesSymbol.

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description takes on the full disclosure burden. It explains an important behavior: minute_tier.included:false is not a gap, on_demand:true means sub-hour bars are fetched on first request with a latency range. It does not detail error cases or full response shape, but covers the most misleading behavior.

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 three sentences, front-loads the core definition, and keeps the critical caveat at the end. Every sentence earns its place: definition, recommended usage, and an important edge-case clarification. No filler.

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?

With no output schema, the description must stand in for response semantics. It covers what the report contains (intervals, columns, time range, depth) and the key on_demand nuance. It does not specify the exact container or every possible response field, but it provides enough for correct invocation and interpretation.

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?

The sole parameter ticker has 100% schema description coverage ('Symbol'), so the baseline is 3. The description adds only the contextual notion of 'one ticker', which does not materially deepen the parameter semantics.

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 opens with 'Data-coverage report for one ticker' and specifies what it reports: intervals, columns, time depth, and depth. This clearly distinguishes it from data-retrieval siblings like get_ticker_bars or get_series by framing it as a coverage-checking endpoint.

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?

It explicitly instructs when to use the tool: 'ask this before assuming a gap in bars/series is a data outage vs. genuinely-never-covered.' It could be stronger by naming specific alternative tools, but the usage context is clear and actionable.

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

A3.9/5.0
Disambiguation4/5

Most tools target distinct resource-action pairs, but get_ticker and get_ticker_history overlap (both return a single historical row via asof), and the four subscribe_* tools are thin wrappers around create_webhook, creating some ambiguity. Detailed descriptions mitigate but don't eliminate confusion.

Naming Consistency4/5

The tickerbot_ prefix and verb_noun pattern are consistent (create_*, get_*, list_*, delete_*, update_*), but subscribe_* deviates from create_* for webhooks, and scan/search_news are bare verbs. Overall predictable.

Tool Count2/5

35 tools is excessive for the domain; many could be consolidated (e.g., four subscribe_* variants into a single parameterized webhook creator, get_ticker/get_ticker_history into one). The breadth of data types justifies some volume, but this exceeds the 25-tool threshold for coherence.

Completeness5/5

Full lifecycle coverage for universes, custom signals, and webhooks; extensive read-side for tickers, series, bars, events, news, and scans. No critical dead ends: anything creatable can be updated/deleted/tested, and data lookups have appropriate query tools.