Skip to main content
Glama

MCPFax Feed Reader

Read an RSS or Atom feed as structured items

read_feed

Fetch any RSS, RSS/RDF or Atom feed and get back one consistent shape: title, link, ISO-8601 publication date, author, summary and categories per item, plus the feed's own title and last-build time. The three feed dialects disagree about every element name and date format; this normalises them so you never branch on feed type. Pass 'since' to return only items published after a timestamp — the cheap way to poll for what changed. Costs $0.005 USDC per call via x402 on Base.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesAbsolute URL of the feed itself, e.g. 'https://hnrss.org/frontpage'.
limitNoMaximum items to return. Default 20, maximum 100.
sinceNoISO-8601 timestamp; return only items published at or after it. Use your last poll time.

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations provided, the description carries the load. It discloses the per-call cost, behavior on feed dialects, and the polling use case. It does not mention error handling, authentication prerequisites, or rate limits, which would be beneficial, but the provided behavioral context is valuable and non-obvious.

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 efficiently structured: main purpose, benefit of normalization, usage tip, and cost are all included in about 50 words. It is front-loaded with the core action and does not waste words, though it could be slightly more compact.

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?

The description specifies the return shape (item fields and feed metadata) and cost, which is essential for the agent to know what to expect. It omits authentication/payment setup details and error behavior, but for a simple read tool with 3 easily understood parameters, it covers the major needs well.

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 coverage is 100%, so parameters are fully documented in the schema (e.g., url, limit with defaults, since with ISO-8601). The description adds extra context for 'since' by explaining its use case for polling, which is helpful but does not significantly increase meaning beyond the schema. Baseline of 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 states a specific verb (Fetch) and resource (RSS, RSS/RDF, Atom feed) and explains the normalization of inconsistent formats into one consistent shape. It clearly differentiates from siblings like discover_feeds or request_data by focusing on reading a known feed, not on discovery or generic data retrieval.

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?

It provides clear context for when to use the tool, such as polling with the 'since' parameter, and explicitly recommends it as 'the cheap way to poll for what changed.' However, it does not name sibling tools or state explicit conditions to prefer alternatives, though the distinct purposes make this less critical.

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.0
Disambiguation5/5

Each tool has a clearly distinct role: discover_feeds locates feed URLs, read_feed consumes and normalizes them, demand_report surfaces aggregate market demand, and request_data handles individual data-looking requests. Even the two marketplace-related tools are separated by scale and purpose.

Naming Consistency5/5

All tool names follow the same verb_noun snake_case pattern: discover_feeds, read_feed, request_data, demand_report. The style is uniform and each name accurately suggests its action.

Tool Count5/5

Four tools is a well-scoped count for this server's purpose: two feed operations and two data-marketplace operations. Each tool earns its place without redundancy or bloat.

Completeness5/5

The core feed workflow is complete: discover where a feed lives, then read and normalize it with optional since-based polling. The demand-report and request-data tools round out the marketplace side without leaving obvious dead ends.

Resources