Skip to main content
Glama

Read Feed

read_feed
Read-onlyIdempotent

Read a curated artificial-intelligence feed by its id (from list_feeds). Returns normalized items (title, link, published, summary). Optionally filter items by keyword.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
feedYesCurated feed id (from list_feeds).
limitNoMax items (1-50, default 20).
queryNoKeyword filter over item title/summary.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "feed": "arxiv-cs-ai"
      +  },
      +  {
      +    "feed": "hackernews",
      +    "limit": 10,
      +    "query": "llm"
      +  }
      +]
  2. First observed

TDQS

A4/5.0
Behavior4/5

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

Annotations already indicate read-only, idempotent, open-world, and non-destructive behavior. The description adds useful behavioral detail by specifying the normalized return items (title, link, published, summary) and optional keyword filtering, going beyond the structured 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 two sentences, front-loads the core action, and includes the return format and filtering option without any redundancy. Every word earns its place.

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 a simple 3-parameter tool, no output schema, and rich safety annotations, the description adequately covers what the tool does, how to identify the feed, the return shape, and an optional behavior. It is suffficient for an AI agent to select and invoke the tool correctly, though it omits details like the limit parameter which the schema already covers.

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%, with each parameter fully described. The description adds marginal value by mentioning the feed id source and keyword filtering, but these are already present in the schema descriptions. Therefore, the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool reads a curated AI feed by id, specifying the resource and action. It mentions the source (list_feeds) to obtain the id, but does not explicitly differentiate from sibling tools like fetch_feed, so it falls short of a 5.

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 description provides clear context that the feed id must come from list_feeds, which is a usage prerequisite. It does not explicitly state when to use this tool versus alternatives or any exclusions, so it earns a 4 rather than 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.