get_feed_headlines
Extract and format RSS feed headlines, including titles, summaries, and URLs, in markdown, text, HTML, or JSON. Simplify content retrieval for analysis or integration.
Instructions
Gets a list of headlines from a feed, including title, summary, and URL.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format for the headlines | json |
url | Yes | The RSS feed URL to get headlines from |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"format": {
"default": "json",
"description": "Output format for the headlines",
"enum": [
"markdown",
"text",
"html",
"json"
],
"type": "string"
},
"url": {
"description": "The RSS feed URL to get headlines from",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}