Skip to main content
Glama

tickerbot_list_webhooks

List the caller's webhook subscriptions (rules created via the subscribe tools), newest-first. Use status to filter to active or disabled rules.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoPage size. Max 100. Default 50.
cursorNoOpaque cursor.
statusNoFilter by status: `active` or `disabled`. Omit for all.

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden. It discloses key behavioral traits: ordering ('newest-first'), scope ('caller's'), and provenance ('created via the subscribe tools'). While pagination and return format are not detailed, the essential behavior for a list operation is covered. No contradictions with annotations since none exist.

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 two sentences, with the primary action and scope in the first sentence and a practical usage hint in the second. Every word contributes value, with no filler or repetition of schema content. This is exemplary conciseness.

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 simplicity (list operation, three optional parameters, no output schema), the description covers the key aspects: what is listed, whose, order, and a filtering option. It does not describe the return structure, but with no output schema and straightforward semantics, the provided information is largely sufficient. A 5 would require explicit guidance on expected response shape or pagination behavior.

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 schema covers all parameter descriptions at 100% coverage, which sets the baseline at 3. The description adds meaningful context by explaining that the listed items are 'rules created via the subscribe tools' and explicitly suggests using `status` for filtering. This enriches understanding of the parameters beyond the schema's bare definitions, justifying a 4.

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 uses a specific verb ('List') with a clear resource ('webhook subscriptions') and scopes it to 'the caller's'. It also clarifies that these are 'rules created via the subscribe tools', distinguishing it from sibling tools like list_webhook_deliveries and get_webhook. The purpose is immediately understandable.

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 clear context by stating it lists the caller's subscriptions and includes a usage hint for the `status` filter. It does not explicitly name alternatives or exclusions, but the sibling tool names (e.g., list_webhook_deliveries) make the differentiation obvious enough. This is one notch below explicit 'when to use vs alternatives' guidance.

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.