fetch_multiple_feeds
Batch fetch multiple RSS feeds simultaneously or sequentially with success/error status for each URL, enabling efficient monitoring and management of feed data.
Instructions
Batch fetch multiple RSS feeds with success/error status for each
Input Schema
Name | Required | Description | Default |
---|---|---|---|
parallel | No | If 'true', fetch feeds in parallel; otherwise, fetch sequentially | true |
urls | Yes | Array of RSS feed URLs to fetch |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"parallel": {
"default": "true",
"description": "If 'true', fetch feeds in parallel; otherwise, fetch sequentially",
"type": "string"
},
"urls": {
"description": "Array of RSS feed URLs to fetch",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"urls"
],
"type": "object"
}