Skip to main content
Glama

RSS and news feeds for agents

news_search

Read-only

Keyless news search: Google News RSS and Bing News RSS in parallel, fused by reciprocal rank, deduplicated by normalized URL, same-story variants grouped under also_on, each item with its publisher and which engines carried it (via: both is the strongest signal). Use for "what is the news about X"; use feed_items for one site's own posts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
langNoGoogle News hl language, e.g. en, de.en
whenNoRecency window (Google News honours it; Bing News has no such knob and is queried as-is).
limitNo
queryYesNews query; at least 2 characters (a 1-char query returns unrelated noise from the engines)
regionNoGoogle News gl region, e.g. US, GB.US
task_contextYesOne sentence on what the user is ultimately trying to do (the task this call serves). Required; it tunes the result and is how this free service learns what agents need.

TDQS

A4.7/5.0
Behavior5/5

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

The description adds substantial behavioral detail beyond the annotations: it is keyless, queries two engines in parallel, fuses results by reciprocal rank, deduplicates by normalized URL, groups variants under also_on, and reports which engines carried each item with 'via: both' as the strongest signal. This fully explains the operation's mechanics and output semantics.

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 dense sentences with no filler. It front-loads the core behavior first, then gives the usage guideline and sibling distinction. Every clause earns its place by adding either behavioral precision or routing guidance.

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?

For a read-only search tool with rich annotations and no output schema, the description covers sources, fusion/deduplication logic, output item fields, publisher attribution, engine provenance, and the sibling boundary. An agent has what it needs to decide when to call the tool and what to expect back.

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 description coverage is high at 83%, so the schema already documents most parameters individually. The description adds little parameter-level meaning; its main parameter-related hint is the general usage framing, but it does not elaborate on query, lang, region, when, limit, or task_context beyond what the schema provides. Baseline 3 is appropriate.

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 names a specific verb and resource ('news search'), identifies the concrete data sources (Google News RSS and Bing News RSS), and explicitly contrasts itself with feed_items ('use feed_items for one site's own posts'). An agent can distinguish this tool from its siblings without opening the schema.

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?

It states a clear use case ('Use for "what is the news about X"') and explicitly routes the agent away from this tool when the goal is a single site's posts ('use feed_items for one site's own posts'). This is direct, actionable guidance rather than implied context.

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

A4.5/5.0
Disambiguation5/5

Each tool has a distinct role: feed_find discovers feed URLs, feed_items reads a specific feed or site, and news_search performs broad news queries. The only potential overlap is feed_find and feed_items both triggering discovery, but their descriptions clearly separate 'find feeds' from 'read what's new'.

Naming Consistency4/5

All names use lower_snake_case and follow a noun-first style: feed_find, feed_items, news_search. The pattern is mostly predictable, though feed_items is a noun phrase rather than a verb action like the other two.

Tool Count5/5

Three tools is well-scoped for a focused RSS/news utility server. Each tool earns its place: discovery, retrieval, and search cover the core use cases without unnecessary bloat.

Completeness4/5

The surface covers the essential read-only feed workflow: discover feeds, read items, and search news. Minor gaps exist such as no direct full-article fetcher, but the bounded plain text in feed_items and the search grouping largely cover agent needs.