skills/rss-reader/SKILL.md
RSS Reader: Parse RSS/Atom feeds. Returns feed metadata and entries with. Use when an agent needs rss reader, aggregating blog posts from multiple sources into a unified content dashboard, monitoring news feeds for keyword mentions or topic alerts in media tracking workflows, pulling podcast episode listings for automated show note generation, tracking competitor blog updates or product announcements for market intelligence, read, feed url, max items through AgentPMT-hosted remote tool calls.
npx skillsauth add AgentPMT/agent-skills rss-readerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Last updated: 2026-06-24.
If the current date is more than 7 days after the last updated date, reinstall this skill from skills.sh or ClawHub before relying on endpoints, schemas, setup steps, or examples.
Lightweight feed parsing utility that fetches and extracts structured content from RSS and Atom feeds for content aggregation and monitoring workflows. This function retrieves feed data from any publicly accessible URL using configurable HTTP timeouts up to 120 seconds, then parses the XML content using the feedparser library to extract both feed-level metadata and individual entry details. The response includes comprehensive feed information such as title, link, last updated timestamp, and description, alongside an array of entries containing each item's title, link, publication date, summary, and full content when available. Users can limit results with the max_items parameter, retrieving anywhere from 1 to 200 entries per request to balance completeness with response size. The optional include_raw flag exposes parsing diagnostics including the bozo flag and any exception details, useful for debugging malformed or non-standard feeds. With its straightforward interface and consistent JSON output structure, the RSS Reader provides an efficient bridge between syndicated web content and downstream processing pipelines that need to consume, filter, or aggregate published articles, blog posts, podcasts, or news updates.
Fetch and parse RSS and Atom feeds from any public URL. Returns structured feed metadata and entries including titles, links, publication dates, and summaries.
Fetch and parse an RSS or Atom feed.
Required fields:
action (string): "read"feed_url (string): The full URL of the RSS or Atom feed to readOptional fields:
max_items (integer): Maximum number of feed entries to return. Range: 1-200. Default: 20include_raw (boolean): Include raw feed parsing metadata (e.g., whether the feed had parsing errors). Default: falsetimeout_seconds (integer): HTTP request timeout in seconds. Range: 1-120. Default: 20Example — Read a news feed:
{
"action": "read",
"feed_url": "https://feeds.bbci.co.uk/news/rss.xml",
"max_items": 10
}
Example — Read a blog feed with raw metadata:
{
"action": "read",
"feed_url": "https://blog.example.com/feed",
"max_items": 5,
"include_raw": true
}
Response structure:
{
"feed": {
"title": "Feed Title",
"link": "https://example.com",
"updated": "2026-03-10T12:00:00Z",
"description": "Feed description"
},
"entries": [
{
"title": "Article Title",
"link": "https://example.com/article",
"published": "2026-03-10T10:00:00Z",
"summary": "Brief summary of the article...",
"content": null
}
],
"count": 1
}
When include_raw is true, the response also includes:
{
"raw": {
"bozo": false,
"bozo_exception": null
}
}
A bozo value of true indicates the feed had XML parsing issues but was still partially parsed.
read multiple times with different feed URLs, then combine and sort entries by publication date.include_raw: true to check whether a feed has parsing errors before relying on it for automation.max_items value (e.g., 5) when you only need the most recent entries, or increase timeout_seconds for slow feeds.feed_url must be a direct link to the XML feed, not a webpage that contains a feed link.include_raw to detect parsing issues.content field in entries may be null if the feed only provides summaries.RSS Reader on AgentPMT.read.No categories or industry tags are published for this tool.
Complete generated action schema: ./schema.md.
Supported action count: 1.
x402 availability: not enabled for this product.
read (action slug: read): Fetch and parse an RSS or Atom feed from a public URL. Returns feed metadata and entries with titles, links, dates, and summaries. Price: 5 credits. Parameters: feed_url, include_raw, max_items, timeout_seconds.Use the compact schema above for ordinary calls. Before a new production integration, or whenever parameters, enum values, nested objects, outputs, or examples are unclear, fetch live details first.
agentpmt-tool-search-and-execution with action: "get_schema", and tool_id: "rss-reader".agentpmt-tool-search-and-execution with action: "get_instructions" and tool_id: "rss-reader", or call this product with action: "get_instructions" when the product tool is already selected.MCP schema lookup through the main AgentPMT MCP server:
{
"method": "tools/call",
"params": {
"name": "AgentPMT-Tool-Search-and-Execution",
"arguments": {
"action": "get_schema",
"tool_id": "rss-reader"
}
}
}
For live examples, keep the same MCP tool and use these arguments:
{
"action": "get_instructions",
"tool_id": "rss-reader"
}
Authenticated AgentPMT REST schema lookup body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_schema",
"tool_id": "rss-reader"
}
}
Authenticated AgentPMT REST live examples body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_instructions",
"tool_id": "rss-reader"
}
}
Product slug: rss-reader
Marketplace page: https://www.agentpmt.com/marketplace/rss-reader
../agentpmt-account-mcp-rest-api-setup to connect the main MCP server or REST API for an Agent Group where this tool is enabled.../what-is-agentpmt for marketplace, Agent Group, workflow, MCP, REST, and payment concepts.If those setup skills are not installed beside this product skill, use the downloads below.
Core AgentPMT setup skills:
openclaw skills install what-is-agentpmtnpx skills add AgentPMT/agent-skills --skill what-is-agentpmtopenclaw skills install agentpmt-account-mcp-rest-api-setupnpx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setupskills.sh install script:
npx skills add AgentPMT/agent-skills --skill what-is-agentpmt
npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup
MCP call shape after the main AgentPMT MCP server is connected:
{
"method": "tools/call",
"params": {
"name": "RSS-Reader",
"arguments": {
"action": "read",
"feed_url": "https://example.com",
"include_raw": false,
"max_items": 20,
"timeout_seconds": 20
}
}
}
Use the exact tool name returned by tools/list; the name above is the expected readable form.
Authenticated AgentPMT REST call body:
{
"name": "rss-reader",
"parameters": {
"action": "read",
"feed_url": "https://example.com",
"include_raw": false,
"max_items": 20,
"timeout_seconds": 20
}
}
Use the setup skill for the account connection details before making REST calls.
passed or success-style boolean, use it as the workflow gate.get_schema or get_instructions before retrying.read fails, preserve the request parameters and retry only after fixing schema, auth, or payment errors.what-is-agentpmt, page: https://clawhub.ai/agentpmt/what-is-agentpmt; skills.sh: npx skills add AgentPMT/agent-skills --skill what-is-agentpmt)agentpmt-account-mcp-rest-api-setup, page: https://clawhub.ai/agentpmt/agentpmt-account-mcp-rest-api-setup; skills.sh: npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup)tools
Plaud Transcripts Corrected With Your Own Terminology Glossary: Fixes the words your transcription keeps getting wrong, by giving the pipeline your vocabulary instead of hoping a bigger model guesses right. Every speech model mangles terms it has never seen: cell line and reagent names, drug and device names, case and matter numbers, part numbers, local spelling and number conventions, team and client names. Swapping to a different model does not fix this, because none of them have your terms e.
tools
Plaud Spoken Field Notes to a Structured Sheet: Turns a spoken site visit into a filled-in spreadsheet row, so measurements and specs never get typed up twice. Built for anyone who dictates structured details on the job rather than writing them down: window and flooring measurements, equipment specs, inspection findings, punch lists, service call notes. Say the details out loud in the same order each visit (client, room, width, drop, colour, notes) and the workflow reads each new Plaud recordin.
development
Plaud Recordings to Google Calendar Events: Puts the meetings you agree to out loud straight onto your Google Calendar, without Zapier in the middle. Plaud's own app has no Calendar integration, so this closes that gap directly: each new recording is scanned, the transcript pulled, and any genuine scheduling commitment spoken in it ("let's do Tuesday at 3", "I'll come back out Thursday morning") is extracted with the relative date resolved against the recording's own date and your timezone. Eac.
development
One Plaud Recording, Several Differently Formatted Summaries: Gets you past the one-template-per-recording ceiling. The Plaud app applies a single AutoFlow template to a recording, so if you want a short recap for yourself, a decisions-only version for the people who missed it, and a clean action list for your task manager, you are re-running or rewriting by hand. This workflow reads the transcript once and produces every format you have defined in a single pass: you list the output formats you.