Skip to main content
Glama

Read Feed

read_feed
Read-onlyIdempotent

Read a curated health & medicine 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": "nih-news"
      -  },
      -  {
      -    "feed": "medical-research",
      -    "limit": 10,
      -    "query": "vaccines"
      -  }
      -]New value: +[
      +  {
      +    "feed": "cdc-newsroom"
      +  },
      +  {
      +    "feed": "fierce-pharma",
      +    "limit": 10,
      +    "query": "drug"
      +  }
      +]
  2. Changed1 schema field changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "feed": "nih-news"
      +  },
      +  {
      +    "feed": "medical-research",
      +    "limit": 10,
      +    "query": "vaccines"
      +  }
      +]
  3. First observed

TDQS

A4/5.0
Behavior4/5

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

Annotations already cover read-only, idempotent, non-destructive, and open-world behavior, so the description's main added value is the return shape ('normalized items (title, link, published, summary)') and the optional keyword filtering behavior. This is useful context, though pagination and error behavior are not disclosed.

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 primary action and resource, and every sentence adds useful information without fluff. It is compact and well structured.

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 three documented parameters and no output schema, the description covers the essential call pattern and return fields. It is not fully complete because it omits ordering, pagination, and error behavior, but these are relatively minor for a simple read operation.

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 parameters are already fully documented. The description reinforces that feed comes from list_feeds and that query is a keyword filter, but it adds no new semantic information beyond the schema.

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 states a specific action ('Read a curated health & medicine feed by its id') and identifies the resource source ('from list_feeds'). It clearly communicates what the tool does, but it does not explicitly differentiate from the sibling fetch_feed or other feed-related 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 gives clear usage context: use this tool to read a curated feed by id, with an optional keyword filter, and obtain the id from list_feeds. It does not, however, state when not to use it or point to alternative tools such as fetch_feed.

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.