The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "RSS feed to Discord channel",
"nodes": [
{
"id": "9c2d4e3a-7777-4ec6-9002-aaaaaaaaaaaa",
"name": "RSS Feed Trigger",
"type": "n8n-nodes-base.rssFeedReadTrigger",
"typeVersion": 1,
"position": [
240,
300
],
"parameters": {
"feedUrl": "https://news.ycombinator.com/rss",
"pollTimes": {
"item": [
{
"mode": "everyHour"
}
]
}
}
},
{
"id": "9c2d4e3a-7777-4ec6-9002-bbbbbbbbbbbb",
"name": "Format Message",
"type": "n8n-nodes-base.set",
"typeVersion": 3.4,
"position": [
460,
300
],
"parameters": {
"assignments": {
"assignments": [
{
"id": "asn-1",
"name": "content",
"value": "=*{{ $json.title }}*\n{{ $json.link }}",
"type": "string"
}
]
},
"options": {}
}
},
{
"id": "9c2d4e3a-7777-4ec6-9002-cccccccccccc",
"name": "Discord",
"type": "n8n-nodes-base.discord",
"typeVersion": 2,
"position": [
680,
300
],
"parameters": {
"resource": "message",
"operation": "send",
"content": "={{ $json.content }}"
}
}
],
"connections": {
"RSS Feed Trigger": {
"main": [
[
{
"node": "Format Message",
"type": "main",
"index": 0
}
]
]
},
"Format Message": {
"main": [
[
{
"node": "Discord",
"type": "main",
"index": 0
}
]
]
}
},
"active": false,
"settings": {
"executionOrder": "v1"
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
RSS feed to Discord channel. Uses rssFeedReadTrigger, discord. Event-driven trigger; 3 nodes.
Source: https://github.com/ratamaha-git/n8n-mcp/blob/main/examples/workflow-rss-to-discord.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
RSS-Feed. Uses rssFeedReadTrigger, baserow, todoist, discord. Event-driven trigger; 10 nodes.
Error Logger. Uses errorTrigger, discord, dataTable. Event-driven trigger; 3 nodes.
Error Logger. Uses errorTrigger, discord, dataTable. Event-driven trigger; 3 nodes.
Send A Discord Message When A Certain Onfleet Event Happens. Uses discord, onfleetTrigger. Event-driven trigger; 2 nodes.