rss-reader
Get the current RSS feed for a given URL with optional filtering by article count and date.
{
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "The URL of the RSS feed to retrieve."
},
"count": {
"type": "number",
"description": "The maximum number of articles to retrieve (default: 10).",
"minimum": 1,
"maximum": 100
},
"from_date": {
"type": "string",
"description": "Only retrieve articles published on or after this date (ISO 8601 format, e.g., '2023-01-01' or '2023-01-01T00:00:00Z')."
}
},
"required": [
"url"
]
}