rss_parse
Fetch and parse RSS/Atom feeds into structured JSON, eliminating XML parsing and reducing token usage. Ideal for news aggregation and content monitoring.
Instructions
Fetch and parse an RSS 2.0 or Atom 1.0 feed URL. Returns structured JSON with feed metadata (title, description, language, last-build date) and an array of items (title, link, pubDate, author, categories, description, enclosure). Use instead of fetching raw XML — saves 90%+ of tokens and eliminates XML parsing in the agent. Ideal for news aggregation, content monitoring, and feed-based workflows.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | RSS or Atom feed URL (http:// or https://). | |
| maxItems | No | Max feed items to return (default 20, max 200). |