← Back to all posts

RSS Reader

On this page

Purpose

RSS Reader fetches and parses one RSS feed. It returns a DataFrame with article titles, links, publication dates, and summaries.

When to use it

  • Monitor a blog, publication, podcast, or product feed.
  • Filter or summarize a feed downstream.
  • Give Agent Core a feed-reading tool.

How to use it

Tool Mode

  1. Enable Tool Mode and connect Toolset to Agent Core.
  2. Restrict the agent to known public feed URLs.
  3. Test the feed before relying on it in an agent workflow.

Normal mode

  1. Enter or connect a known public RSS Feed URL.
  2. Connect Articles to a DataFrame-compatible component.
  3. Format selected results for Chat Output, Text Output, or a model.

Configuration

SettingWhat it controlsRecommended starting point
RSS Feed URLThe RSS feed to fetch.Use a public feed URL.
TimeoutRequest timeout.Leave at 5 seconds.

Expected result

RSS Reader returns one row per feed item with title, link, published, and summary fields. A valid feed with no items returns an empty DataFrame with those columns. Request and feed errors return an explanatory row.

Reference details

RSS Reader reads RSS <item> elements, not Atom <entry> elements. It does not authenticate to private feeds, normalize every feed format, or guarantee that every publisher supplies a summary or publication date. Do not let an Agent choose arbitrary URLs until the flow has a constrained feed policy.

← Back to all posts