Skip to main content
Glama

tickerbot_list_tickers

List active tickers from the Tickerbot universe (~14,500 US equities, plus the US Treasury curve and Fed policy rates under R:, and major FX pairs, spot metals and crypto under X:). Use tickers for bulk lookup of named symbols (returns full rows); otherwise walks the universe alphabetically with cursor pagination. Supports filters: search, asset_type, exchange, sector, min_market_cap.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoPage size. Max 1000. Default 50.
cursorNoOpaque cursor from a prior response.
searchNoCase-insensitive substring filter on ticker/name. Orders results by market_cap desc.
sectorNoExact-match sector filter (e.g. "Technology").
tickersNoComma-separated symbols (max 50). When set, returns full rows for these symbols and pagination params are ignored.
exchangeNoFilter by exchange (e.g. "XNYS", "XNAS", "BATS").
universeNoRestrict to a universe slug (top_10, top_100, or a saved one).
asset_typeNoFilter by INSTRUMENT TYPE within equities: the stored value (CS, ETF, ADRC, PFD, FUND, UNIT, SP, ETS, WARRANT, RIGHT, ETN, ETV), or "equity" for the equity-like set. This is not an asset class — `asset_type=crypto` is rejected; crypto is in the main list under its X: symbols.
asset_classNoFilter by asset class — `stocks`, `rates`, `crypto`, `fx`, or a comma-separated list. Omit for every class. Distinct from asset_type (the instrument type within equities).
min_market_capNoMinimum market cap in USD. Orders results by market_cap desc.

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 of behavioral disclosure. It reveals the pagination order (alphabetical), the effect of `tickers` (ignores pagination params), and that search/min_market_cap order results by market_cap desc. It does not mention rate limits or response shape, but it covers the most consequential behaviors.

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, each densely packed with distinct information. It front-loads the core purpose, then adds the universe composition, pagination mode, and filter list without repetition or fluff. Every sentence earns its place; it is appropriately sized for a tool with 10 parameters.

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 complexity (10 params, no output schema, no annotations), the description provides a solid overview of universe scope, special parameters, and filtering behavior. It does not describe the return payload shape, but for a list operation with a cursor, the response format is typically inferable. The description is complete enough for an agent to select and invoke the tool correctly for most use cases.

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?

Schema description coverage is 100%, so the baseline is 3. The description adds meaningful context beyond schema: what 'active' means, the universe composition (US equities plus R: and X: symbols), and the alphabetically-with-cursor pagination behavior. It also reinforces the `tickers` parameter's bulk-row behavior, which is only partially implied in the schema.

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: 'List active tickers from the Tickerbot universe', immediately clarifying the tool's function. It distinguishes itself from siblings by describing the universe scope and the unique `tickers` bulk-lookup mode, setting it apart from single-ticker tools like `tickerbot_get_ticker` and scan tools.

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 provides clear usage context: when to use the `tickers` parameter for bulk lookup versus walking the universe with `cursor` pagination. It also lists supported filters, which helps the agent decide when to call this tool. However, it does not explicitly contrast with alternatives like `tickerbot_scan` or `tickerbot_search_news`, leaving some ambiguity for edge cases.

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.