{"provider":{"title":"RSS Feed Parser","description":"Fetch and parse any RSS or Atom feed into structured JSON. Input: feed URL and optional maxItems (1-50, default 10). Output: feed metadata (title, description) and array of items with title, link, description, publication date, author, and categories. Handles both RSS 2.0 and Atom feed formats.","price":{"currency":"USD","amountCents":0.1,"amountMicrodollars":1000,"unit":"call"},"runContract":{"method":"POST","endpointPath":"/run","inputSchema":{"type":"object","properties":{"url":{"type":"string","format":"uri","description":"URL of the RSS or Atom feed to fetch and parse"},"maxItems":{"type":"integer","minimum":1,"maximum":50,"default":10,"description":"Maximum number of feed items to return (1-50, default 10)"}},"required":["url"],"additionalProperties":false},"outputSchema":{"type":"object","properties":{"feedTitle":{"type":"string","description":"Title of the feed"},"feedDescription":{"type":"string","description":"Description/subtitle of the feed"},"feedUrl":{"type":"string","description":"URL that was fetched"},"items":{"type":"array","items":{"type":"object","properties":{"title":{"type":"string","description":"Item title"},"link":{"type":"string","description":"Item URL"},"description":{"type":"string","description":"Item description or summary (HTML stripped)"},"pubDate":{"type":"string","description":"Publication date"},"author":{"type":"string","description":"Author name"},"categories":{"type":"array","items":{"type":"string"},"description":"Categories/tags"}},"required":["title","link"],"additionalProperties":false},"description":"Feed items"}},"required":["feedTitle","feedUrl","items"],"additionalProperties":false}}}}