Skip to main content
Glama

RSS and news feeds for agents

feed_find

Read-onlyIdempotent

Find the RSS/Atom/JSON feed(s) of a site: tags and the Link header, feed-shaped links in the page, the common paths on the deepest path prefix first, then a short table of well-known legacy feeds; every rung tried is returned. Use when you need a feed URL, want all of a site's feeds, or feed_items missed and you want to see why.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
allNoKeep going after the first feed to list every feed found (costs more fetches).
siteYesSite or page URL, e.g. "arstechnica.com" or "https://vercel.com/blog".
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.3/5.0
Behavior5/5

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

Beyond the read-only and idempotent annotations, the description discloses the actual search strategy: alternate tags, Link header, feed-shaped links, common paths, legacy feeds, and the order of attempts. It also states that every tried rung is returned, giving agents useful expectations about output completeness.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but information-packed, with the tool purpose front-loaded and usage guidance at the end. No sentence is wasted, though the long semicolon-heavy sentence could be restructured for easier parsing.

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 no output schema, the description usefully explains the discovery algorithm, the cost-related option, and the situations in which the tool should be invoked. It could be slightly more explicit about the exact shape of the returned result, but nothing critical 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 description coverage is 100%, so the schema already documents site, task_context, and all. The description adds no meaningful parameter-level semantics beyond the schema, making the baseline score of 3 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 opens with the specific verb 'Find' and a precise resource ('RSS/Atom/JSON feed(s) of a site'), then enumerates the discovery techniques used. It also distinguishes itself from the feed_items sibling by mentioning 'feed_items missed', making the tool's role clear.

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 tool explicitly states when to use it: when you need a feed URL, want all feeds from a site, or need to debug why feed_items missed something. It does not explicitly contrast with news_search, so it lacks a full when-not-to-use boundary, but the provided conditions are clear.

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.