Skip to main content
Glama

tickerbot_search_news

Search the news archive (back to 2015) with a SQL WHERE clause. Available on every plan. Columns on news_article include time_published, title, summary, source, source_domain, category, authors, topics, tickers (array), overall_sentiment_score, overall_sentiment_label, url. To filter to one ticker use 'NVDA' = ANY(tickers) or the auto-unnest alias tk = 'NVDA'. Example: q=tk='NVDA' AND time_published >= NOW() - INTERVAL '1 day'. Supports group_by + having for aggregation (e.g. count of articles per day).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
qYesSQL WHERE on news_article. Optional when search or a scoping param is present.
dirNoSort direction.
limitNoPage size.
orderNoSort column or SELECT alias. Default time_published (non-aggregate) or volume (aggregate).
cursorNoOpaque cursor.
havingNoWHERE-style filter on aggregates. Requires group_by.
searchNoFull-text search over title+summary (websearch grammar: "apple earnings", quoted phrases, OR, -negation). ANDs with q and the scoping params.
selectNoComma-separated columns to include. Defaults to a slim set.
group_byNoComma-separated columns for aggregation. Alias a key with `AS` to name its JSON key; un-named expressions are named for you.

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It disclose the data scope (news_article columns), syntax (`tk='NVDA'`), time range, and aggregation support, which goes well beyond schema descriptions. It does not explicitly state read-only or return format, but 'search' implies read-only and the column listing provides expectations. The transparency is solid but not exhaustive.

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 dense but every sentence earns its place: archiving depth, plan availability, column list, ticker filtering syntax, example, and aggregation note. It is front-loaded with purpose and uses a practical example. No fluff or redundancy.

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 (9 params, SQL interface, aggregation), the description covers the key aspects: query syntax, available columns, example, and aggregation. It doesn't explain default output shape, but schema covers defaults and cursor/pagination. The description is sufficiently complete for an agent to use it correctly, with minor gaps around response format.

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 baseline is 3. The description goes beyond schema by explaining the SQL WHERE pattern, the auto-unnest alias `tk`, and how group_by/having work together. This adds meaningful semantic value for the main parameters, especially `q` and `group_by`, without duplicating schema info.

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 the tool searches a news archive with a SQL WHERE clause, a specific verb+resource. It distinguishes itself from sibling tools (e.g., tickerbot_get_ticker_bars, list_events) by focusing on news articles and even provides column details and an example query. The purpose is unmistakable.

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: searching news, archive back to 2015, and available on every plan. It gives a concrete example and mentions aggregation capabilities. It does not explicitly name alternative tools or exclusion criteria, but the context is strong enough for an agent to know when to use it. Missing explicit 'when not to use' guidance, but clear context earns a 4.

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.