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": "SocialClaw \u2014 Auto-post new RSS items to social",
"nodes": [
{
"parameters": {
"rule": {
"interval": [
{
"field": "hours",
"hoursInterval": 6
}
]
}
},
"id": "trigger-1",
"name": "Every 6 hours",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1.2,
"position": [
240,
300
]
},
{
"parameters": {
"url": "https://YOUR-BLOG.com/rss.xml"
},
"id": "rss-1",
"name": "Read RSS feed",
"type": "n8n-nodes-base.rssFeedRead",
"typeVersion": 1.1,
"position": [
480,
300
]
},
{
"parameters": {
"resource": "post",
"operation": "schedule",
"account": "REPLACE_WITH_ACCOUNT_ID",
"text": "=New post: {{ $json.title }}\n\n{{ $json.link }}",
"timezone": "UTC",
"postName": "=RSS: {{ $json.title }}"
},
"id": "socialclaw-1",
"name": "SocialClaw",
"type": "n8n-nodes-socialclaw.socialClaw",
"typeVersion": 1,
"position": [
720,
300
],
"credentials": {
"socialClawApi": {
"name": "<your credential>"
}
}
}
],
"connections": {
"Every 6 hours": {
"main": [
[
{
"node": "Read RSS feed",
"type": "main",
"index": 0
}
]
]
},
"Read RSS feed": {
"main": [
[
{
"node": "SocialClaw",
"type": "main",
"index": 0
}
]
]
}
},
"active": false,
"settings": {}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
socialClawApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
SocialClaw — Auto-post new RSS items to social. Uses rssFeedRead, n8n-nodes-socialclaw. Scheduled trigger; 3 nodes.
Source: https://github.com/ndesv21/n8n-nodes-socialclaw/blob/main/templates/02-rss-to-social.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.
This automation template allows you to automatically receive news from RSS feeds, process their content, and publish or schedule posts on various social media platforms using PostPulse.
Send Updates About The Position Of The Iss Every Minute To A Topic In Kafka. Uses httpRequest, kafka. Scheduled trigger; 4 nodes.
Send Http Requests To A List Of Urls. Uses splitOut, scheduleTrigger, httpRequest. Scheduled trigger; 4 nodes.
Send Updates About The Position Of The Iss Every Minute To A Topic In Rabbitmq. Uses rabbitmq, httpRequest. Scheduled trigger; 4 nodes.
Receive Updates For The Position Of The Iss And Push It To A Firbase. Uses httpRequest, googleFirebaseRealtimeDatabase. Scheduled trigger; 4 nodes.