Skip to main content
Glama

Fetch Feed

fetch_feed
Read-onlyIdempotent

Fetch and normalize any RSS / Atom / RDF feed by URL. CF-robust: fetches directly and falls back to a proxy if the source blocks the gateway. Use list_feeds first for curated sources.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesFeed URL, e.g. "https://news.ycombinator.com/rss".
limitNoMax items (1-50, default 20).
queryNoKeyword filter over item title/summary.

Schema Changelog

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

  1. Changed1 schema field changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "url": "https://news.ycombinator.com/rss"
      +  },
      +  {
      +    "limit": 15,
      +    "query": "artificial intelligence",
      +    "url": "https://feeds.arstechnica.com/arstechnica/index"
      +  }
      +]
  2. First observed

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior. The description adds valuable context beyond annotations: 'CF-robust: fetches directly and falls back to a proxy if the source blocks the gateway.' This discloses a specific behavioral trait (proxy fallback) that is not encoded in the annotations, and 'normalize' hints at output processing. 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?

The description is three sentences, each with purpose: the first states the core action, the second adds a key technical nuance, and the third gives cross-tool guidance. There is zero wasted wording. It is front-loaded and easy to scan.

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 tool with no output schema, the description covers the core purpose, usage guidance, and a unique behavioral detail. It does not specify the return format or potential errors, but the combination of annotations and the description is sufficient for an agent to select and invoke the tool correctly. A small gap remains in describing output structure, keeping it from a 5.

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?

The input schema fully describes all three parameters (url, limit, query) with descriptions and examples, giving 100% coverage. The description does not add significantly to parameter semantics beyond the schema; it only restates that the tool fetches by URL. Per the rubric, a baseline of 3 is appropriate when schema coverage is high.

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 action: 'Fetch and normalize any RSS / Atom / RDF feed by URL.' It uses a specific verb ('fetch') and resource ('feed'), and distinguishes itself from list_feeds by explicitly saying 'Use list_feeds first for curated sources.' This makes the tool's purpose unambiguous and differentiated.

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?

The description provides explicit usage guidance: 'Use list_feeds first for curated sources' implies that fetch_feed is for arbitrary or non-curated feeds. It also adds a behavioral note about CF-robustness, which helps the agent decide when to use this tool. This satisfies the criterion of explicit alternatives and when-to-use.

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.1/5.0
Disambiguation4/5

Most tools have distinct purposes, but some overlap exists between query tools (ask_pipeworx, ask_pipeworx_grounded, deep_research) and company research tools (entity_profile, compare_entities, recent_changes). Descriptions clarify differences, but an agent might occasionally select the wrong one.

Naming Consistency4/5

The naming is mostly snake_case with descriptive verb_noun patterns (list_feeds, read_feed, remember, recall). However, some tools break the pattern (ai_visibility_check, ask_pipeworx, discover_tools) and there is inconsistency in verb prefixes (ask_ vs. query vs. nothing). Overall still readable.

Tool Count2/5

With 33 tools covering AI visibility, data queries, betting, feeds, memory, subscriptions, and more, the server feels overloaded and lacks a focused scope. Many tools belong to distinct domains, suggesting this should be split into multiple specialized servers.

Completeness4/5

Within each subdomain (Pipeworx data, Polymarket, feeds, memory), the tool surface is quite complete, offering CRUD-like coverage and advanced features. Only minor gaps exist (e.g., no tool for updating a subscription, no direct PolyMarket trade execution).