Skip to main content
Glama

list_tickers

Read-onlyIdempotent

List distinct company tickers with filings in a sorted, paged format. Identify available tickers before fetching their specific filings with search_filings.

Instructions

Use this to list the distinct company tickers that have filings.

Returns a sorted, paged list. Use search_filings to fetch filings for a ticker.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum tickers to return (1..1000).
offsetNoZero-based offset for paging.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering safety. The description adds useful behavioral context by specifying that the result is sorted and paged, and that it lists distinct tickers that have filings, which goes beyond what annotations convey.

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, front-loaded with the primary purpose and a direct pointer to the sibling tool. Every sentence earns its place with zero redundancy or fluff.

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?

With an output schema present and annotations covering the safety profile, the description provides all necessary information: what the tool does, how it behaves (sorted, paged), and where to go next. Nothing an agent needs to call it correctly is missing.

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?

Schema coverage is 100% with descriptions for limit and offset, so the schema fully documents the parameters. The description mentions 'paged list' but adds no new semantics beyond what the schema already provides, keeping the baseline at 3.

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 a specific action ('list the distinct company tickers that have filings') and resource, distinguishing it from tools that fetch filings. It also mentions sorted and paged output, reinforcing its unique purpose among siblings.

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

Usage Guidelines5/5

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

The description explicitly tells the agent to use search_filings to fetch filings for a ticker, providing an alternative and clarifying when not to use this tool. It implies the use case of enumerating tickers before querying filings, giving clear routing guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.