Skip to main content
Glama

tickerbot_subscribe_scan

Register a webhook that fires when matches for a scan query change. Pass target_url for an https POST, or channel:"discord" + discord_url to post an embed to Discord; omit for in-app delivery in the dashboard. cadence is real-time (1m) by default; throttle to hourly or nyse_open. Use to satisfy "alert me when this happens" prompts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
qYesSQL WHERE expression — same grammar as scan.
nameNoHuman-readable label. Defaults to a truncated version of the query.
cadenceNoEvaluation cadence. Default realtime; hourly/nyse_open throttle. (`1m` accepted as a deprecated alias of realtime.)
channelNoDelivery channel: `webhook` (POST to target_url), `discord` (embed to discord_url), `mobile_push` (to a registered device), or `in_app` (dashboard only). Inferred from the URL you pass if omitted.
universeNoOptional universe slug to scope the watch.
device_idNoRegistered device id from the mobile app. Required when channel is "mobile_push".
target_urlNoOptional https URL to POST matches to (the `webhook` channel). Omit for in-app delivery.
discord_urlNoDiscord incoming-webhook URL (https://discord.com/api/webhooks/…). Required when channel is "discord".

TDQS

A4.1/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 of disclosing side effects. It states that a webhook is registered, that it fires on changes (not continuously), and that cadence can be throttled to hourly or nyse_open. This is meaningful behavioral context beyond a simple 'subscribes to scan.' It stops short of explaining webhook payloads, unsubscription, or authentication requirements, but it does cover the key behavioral triggers and delivery options.

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 long, with the main purpose in the first sentence, delivery details in the second, and cadence/use-case in the third. Every sentence contributes distinct information, and the formatting makes it easy to scan. No filler or redundant repetition.

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 tool has 8 parameters and no output schema, so the description should explain what happens after subscription (e.g., response containing a webhook ID) and the shape of webhook deliveries. It does not describe the payload format, how to manage/delete the subscription, or the mobile_push channel mentioned in the schema. While the main use case is covered, these gaps prevent a higher score.

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 schema has 100% coverage, so the baseline is 3. The description adds minor value by restating delivery patterns (e.g., 'Pass target_url for an https POST, or channel:'discord' + discord_url') and default cadence, but these are already fully documented in the input schema. No new parameter-level insight is provided beyond what the schema already offers.

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 a specific verb+resource: 'Register a webhook that fires when matches for a scan query change.' This clearly distinguishes the tool from siblings like tickerbot_subscribe_ticker or tickerbot_subscribe_signal, which target different event types. The intended use case is also stated, leaving no ambiguity about what the tool accomplishes.

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 explicitly says 'Use to satisfy "alert me when this happens" prompts,' giving a clear trigger for adoption. It also explains delivery-mode alternatives (target_url, Discord, in-app) and cadence options. However, it doesn't explicitly contrast with sibling subscribe tools, though the 'scan query change' context implicitly differentiates it.

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.