feed
Pack: rss2json · Endpoint: https://gateway.pipeworx.io/rss2json/mcp
Fetch RSS/Atom feed as JSON.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
rss_url | string | yes | |
count | number | no | |
api_key | string | no | Optional free rss2json API key for higher limits. |
Example call
Arguments
{
"rss_url": "https://feeds.arstechnica.com/arstechnica/index"
}
curl
curl -X POST https://gateway.pipeworx.io/rss2json/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"feed","arguments":{"rss_url":"https://feeds.arstechnica.com/arstechnica/index"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('feed', {
"rss_url": "https://feeds.arstechnica.com/arstechnica/index"
});
More examples
{
"rss_url": "https://www.bbc.com/news/rss.xml",
"count": 10,
"api_key": "your-rss2json-api-key"
}
Response shape
| Field | Type | Description |
|---|---|---|
status | string | Status of the API response (ok, error, etc.) |
feed | object | Feed metadata |
items | array | Array of feed items/entries |
Full JSON Schema
{
"type": "object",
"properties": {
"status": {
"type": "string",
"description": "Status of the API response (ok, error, etc.)"
},
"feed": {
"type": "object",
"description": "Feed metadata",
"properties": {
"url": {
"type": "string",
"description": "Feed URL"
},
"title": {
"type": "string",
"description": "Feed title"
},
"link": {
"type": "string",
"description": "Feed link"
},
"description": {
"type": "string",
"description": "Feed description"
},
"image": {
"type": "string",
"description": "Feed image URL"
}
}
},
"items": {
"type": "array",
"description": "Array of feed items/entries",
"items": {
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Item title"
},
"description": {
"type": "string",
"description": "Item description or content"
},
"link": {
"type": "string",
"description": "Item URL"
},
"author": {
"type": "string",
"description": "Item author"
},
"pubDate": {
"type": "string",
"description": "Publication date in ISO 8601 format"
},
"content": {
"type": "string",
"description": "Full item content"
},
"enclosure": {
"type": "object",
"description": "Media enclosure (podcast, video, etc.)",
"properties": {
"link": {
"type": "string",
"description": "Enclosure URL"
},
"type": {
"type": "string",
"description": "MIME type"
},
"length": {
"type": "string",
"description": "Enclosure size in bytes"
}
}
},
"categories": {
"type": "array",
"description": "Item categories",
"items": {
"type": "string"
}
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"rss2json": {
"url": "https://gateway.pipeworx.io/rss2json/mcp"
}
}
}
See Getting Started for client-specific install steps.