Skip to main content
Glama

Read Feed

read_feed
Read-onlyIdempotent

Read a curated entertainment & culture 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
    • changedInput schema / examples
      Previous value: -[
      -  {
      -    "feed": "npr-books"
      -  },
      -  {
      -    "feed": "pitchfork-music",
      -    "limit": 10,
      -    "query": "indie rock"
      -  }
      -]New value: +[
      +  {
      +    "feed": "npr-music"
      +  },
      +  {
      +    "feed": "pitchfork",
      +    "limit": 10,
      +    "query": "album"
      +  }
      +]
  2. Changed1 schema field changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "feed": "npr-books"
      +  },
      +  {
      +    "feed": "pitchfork-music",
      +    "limit": 10,
      +    "query": "indie rock"
      +  }
      +]
  3. First observed

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, openWorldHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds that it returns normalized items with specific fields (title, link, published, summary) and supports keyword filtering. It does not disclose additional behaviors like pagination, rate limits, or error handling, but given the strong annotation coverage, a 3 is appropriate.

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 with zero fluff. The primary purpose and required input are front-loaded, followed by return format and optional filtering. Every sentence earns its place, and it is concise without sacrificing clarity.

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 read-only tool with comprehensive annotations and a fully described schema, the description covers the return format and the key use case. It does not mention error scenarios or default limits, but those are in the schema. The lack of an output schema means the description's mention of normalized fields is valuable. Overall, it is adequately complete for an agent to call correctly.

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 each parameter (feed, limit, query) is already documented in the schema. The description reinforces that feed comes from list_feeds and that query filters by keyword, adding minor contextual value. Since the schema carries the full parameter documentation, the baseline of 3 applies, and the description does not significantly exceed it.

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 ('Read') and resource ('curated entertainment & culture feed'), and explicitly references list_feeds as the source of the feed id. It distinguishes itself from sibling list_feeds (which lists feeds) and fetch_feed (which likely fetches raw content) by emphasizing normalized items. An agent can clearly understand what this tool does and how it differs from similar tools.

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 implies the prerequisite of obtaining a feed id from list_feeds and mentions optional keyword filtering, which guides usage. However, it does not explicitly name alternatives like fetch_feed or state when to prefer one over the other. The context is clear but lacks explicit exclusions, so it earns a 4.

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.