Skip to main content
Glama

RSS and news feeds for agents

feed_items

Read-onlyIdempotent

Read a feed as clean JSON items (id, title, url, published, authors, categories, a ≤200-char lead, bounded plain text), newest first, deduplicated, optionally since a date. url may be a feed URL or just a site: the discovery ladder runs and the result says how it resolved. Use for "what is new on X".

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesFeed URL, or a site/page URL to discover the feed for.
limitNo
sinceNoISO date/time; only items published or updated after it.
max_charsNoTotal budget for content_text across the returned items.
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.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.6/5.0
Behavior5/5

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

Beyond the annotations (readOnly, openWorld, idempotent, non-destructive), the description discloses meaningful behavioral details: newest-first ordering, deduplication, optional date filtering, bounded plain text, and the discovery ladder when given a site URL. It also reveals that the result reports how the URL resolved, which is useful for agent interpretation. No contradiction with annotations.

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?

Three sentences deliver a complete mental model: what is returned, how items are ordered and filtered, URL flexibility and resolution reporting, and the intended use case. Every clause earns its place; there is no repetition of schema defaults or annotation trivia.

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?

With no output schema, the description compensates by enumerating the returned fields and noting the resolution message. It covers the main parameters (url, since, task_context, bounded text) and the tool's behavior. The only small gap is that 'limit' is not mentioned in the description, but its schema default and bounds make it fairly self-explanatory.

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 coverage is 80%, so the baseline is 3. The description adds real value beyond the schema: it explains that url may be a feed URL or a site undergoing discovery, that 'since' filters by published or updated date, that text is bounded, and that task_context tunes the result. This goes beyond the schema's individual descriptions, justifying a 4.

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 ('Read') and resource ('a feed'), then enumerates the exact output shape (id, title, url, published, authors, categories, lead, plain text). It also states ordering and deduplication, making the tool's purpose unmistakable and implicitly distinguishing it from siblings like feed_find and news_search.

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 final sentence, 'Use for "what is new on X"', is a clear trigger for when to invoke this tool. It also explains that url can be a feed URL or a site URL, so the discovery behavior is contextualized. It does not explicitly contrast with siblings or state when not to use it, 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.

TDQS

A4.4/5.0
Disambiguation4/5

Each tool has a distinct role: discovering feed URLs, reading feed items, and searching news across engines. The slight overlap is that feed_items can also trigger discovery when given a bare site URL, but feed_find is explicitly for feed URL and ladder diagnostics, so confusion is unlikely.

Naming Consistency4/5

Names are all lowercase snake_case and consistently prefixed by domain area: feed_ for two tools and news_ for the search tool. There is a minor inconsistency in that feed_items uses a noun after the prefix while feed_find and news_search use verbs, but the overall pattern is still clear and readable.

Tool Count5/5

Three tools is well-scoped for an RSS and news feed server: feed discovery, feed reading, and news search are the core operations. Each tool earns its place, and there are no redundant or filler tools.

Completeness5/5

The tool surface covers the essential read-side workflow for the domain: find a feed, read its items, and search news across sources. Since external feeds are not created or edited by agents, missing CRUD operations are not a gap here.