Skip to main content
Glama

BrunoSan AI News Intelligence

news_search

Read-onlyIdempotent

Full-text search across the current live AI and technology news corpus.

Searches titles and summaries of all stored articles.
Best for: finding recent developments on a topic, researching a company,
product or trend, discovering coverage of specific events.

Example queries:
    - "Latest news about Anthropic's new model"
    - "Find all articles mentioning the EU AI Act from the last 7 days"
    - "Search for every article where Sam Altman and regulation appear together — ranked by recency"

Args:
    params (SearchInput):
        - query (str): Search term (any language)
        - limit (int): Number of results, default 10
        - offset (int): Pagination offset, default 0

Returns:
    str: JSON with fields:
        - total_found (int): Total matches in database
        - count (int): Number returned in this response
        - offset (int): Current offset
        - has_more (bool): More results available
        - next_offset (int|null): Offset for next page
        - articles (list): Articles with id, title, teaser, source, url, published

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
paramsYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, and the description is consistent with them, so no contradiction. It adds value beyond annotations by specifying search scope (titles and summaries of the live corpus), pagination semantics, and the exact return envelope (total_found, has_more, next_offset, articles), which helps an agent know what to expect from the call.

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?

Well-structured with a one-line summary, scope, best-for guidance, illustrative example queries, and separate Args/Returns sections. Each section earns its place; the examples actively teach query style rather than padding.

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?

For a read-only, idempotent search tool with a return format fully specified, the description is nearly sufficient. The main gap is the undisclosed api_key parameter, which an agent needs to know about for authentication; the example queries and pagination contract cover most operational scenarios.

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?

With schema description coverage reported at 0%, the description carries the burden and partially compensates: it explains query (any language), limit (default 10), and offset (default 0) with types and defaults. However, it omits api_key entirely from the Args list, and does not restate constraints like limit's 1-50 range or query's length bounds, leaving the parameter picture incomplete.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names a specific verb and resource ('Full-text search across the current live AI and technology news corpus') and adds scope ('Searches titles and summaries of all stored articles'), which is clear and actionable. It does not explicitly name or contrast with siblings like news_search_entities, so some differentiation is left to inference rather than stated.

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?

Provides clear usage context via 'Best for: finding recent developments on a topic, researching a company, product or trend, discovering coverage of specific events,' plus three concrete example queries that convey intended scenarios. It lacks explicit exclusions or alternative routing (when not to use this vs. news_search_entities or news_get_entity), so it stops short of a 5.

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.

Resources