monitor_feed_updates
Track new items in an RSS feed by specifying a URL and checking updates since a specific time or the last fetch, ensuring timely content monitoring.
Instructions
Check for new items in a feed since a specific time or last check
Input Schema
Name | Required | Description | Default |
---|---|---|---|
since | Yes | Time reference for checking updates | |
url | Yes | The RSS feed URL to monitor |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"since": {
"anyOf": [
{
"description": "Timestamp in milliseconds to check updates since",
"type": "number"
},
{
"const": "last",
"description": "Check updates since last fetch",
"type": "string"
}
],
"description": "Time reference for checking updates"
},
"url": {
"description": "The RSS feed URL to monitor",
"type": "string"
}
},
"required": [
"url",
"since"
],
"type": "object"
}