rss_parse
Fetch and parse any RSS 2.0 or Atom 1.0 feed into structured JSON, saving token usage by over 90% compared to raw XML.
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). Returns an error if the URL is unreachable or the response is not valid RSS/Atom XML. Has no side effects. Use instead of fetching raw XML — saves 90%+ of tokens. 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). |