View as Markdown
RSS icon

RSS ACTION

Merge RSS Feeds

Retrieve multiple RSS feeds and return a merged array of items sorted by date See documentation
  • Action
  • Read only
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's RSS account once, then configure and run Merge RSS Feeds from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "rss-merge-rss-feeds",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    rss: { authProvisionId: "apn_xxxxxxx" },
    urls: ["Feed URLs"],
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Merge RSS Feeds inputs
Property Type Description
urls Feed URLs string[]
Enter either one or multiple URLs from any public RSS feed
Required

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
rss-merge-rss-feeds
Version
1.2.10
App
RSS
Authentication
API key
Read-only
Yes
Destructive
No
Open world
Yes