Prerequisites
- Publicly reachable RSS or Atom feed URLs (HTTPS recommended)
- project_contributor access in AgentRuntime
- No API credentials required for standard public feeds
Connect in AgentRuntime
Identify feed URLs
Collect RSS or Atom URLs from blogs, YouTube channels, podcasts, or product changelogs. Most sites expose
/feed, /rss, or <link rel="alternate"> in HTML.Create a connection (optional)
On Connections, click New custom connection only if you want to customize
user_agent or request_timeout_seconds. Many teams install the adapter with default settings and no secrets.Add rss MCP instance
Go to MCP, click Add instance for rss, wire a connection on Instance config if you created one, then set the profile active.
Feeds behind login walls or IP allowlists may fail unless you expose a public URL or proxy. This adapter does not store feed credentials.
What you can build
- Morning digest —
rss_fetch_items_multion industry feeds → LLM summary → email or Slack (when available). - Content pipeline — New blog item → LLM rewrite → human_task → publish via LinkedIn or Google Docs connectors.
- Competitive monitoring — Daily fetch → diff titles against Postgres history → alert on new product posts.
- Podcast/show notes — Parse episode feeds → extract links → add to ClickUp content calendar.
Tools
| Tool | Description |
|---|---|
rss_fetch_items | Fetch one feed URL; return normalized items sorted newest first |
rss_fetch_items_multi | Fetch multiple feeds in parallel; merge and sort newest first |
Example
Fetch the five latest items from a blog feed:Configuration
| Key | Required | Description |
|---|---|---|
user_agent | No | HTTP User-Agent for feed requests |
request_timeout_seconds | No | Per-feed HTTP timeout in seconds |
Troubleshooting
| Issue | Fix |
|---|---|
| Parse errors | Confirm URL returns XML, not HTML error page; validate feed in a reader |
| Empty items | Feed may be valid but stale; set limit to 0 to return all parsed entries |
| Timeout | Increase request_timeout_seconds or workflow timeout_s for slow hosts |
| SSL or redirect failures | Use canonical HTTPS feed URL; some sites redirect HTTP → HTTPS |
Related
- Integrations quickstart
- YouTube connector — channel RSS via
youtube_list_channel_videos_rss - Connector catalog
- Troubleshooting