⚡ Only 300 spots remaining • Closes in 2d 14h 32m
Keep your decentralized audience informed. This workflow monitors your blog RSS feed and automatically posts a summary, title, and link as a new status on Mastodon when changes occur.
This workflow is pre-configured and ready for deployment. Simply import the JSON template into your n8n instance and configure your credentials.
This is an exclusive blueprint. Copy the JSON below to use it.
PRO TIP
Always test your workflow in a development environment before pushing to production.
{
"nodes": [
{
"parameters": {
"url": "https://company.com/blog/rss.xml"
},
"name": "Blog RSS Monitor",
"type": "n8n-nodes-base.rssFeedReadTrigger",
"typeVersion": 1,
"position": [
100,
300
]
},
{
"parameters": {
"method": "POST",
"url": "https://mastodon.social/api/v1/statuses",
"headers": {
"Authorization": "Bearer mastodon-token"
},
"sendBody": true,
"bodyParameters": {
"parameters": [
{
"name": "status",
"value": "📢 New blog post: {{$json.title}}\nRead here: {{$json.link}}"
}
]
}
},
"name": "Post on Mastodon",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4,
"position": [
300,
300
]
}
],
"connections": {
"Blog RSS Monitor": {
"main": [
[
{
"node": "Post on Mastodon",
"type": "main",
"index": 0
}
]
]
}
}
}To use this, copy the JSON above and paste it directly onto your n8n canvas.
Join the elite marketers who have offloaded their entire backend to n8n. Get direct support and custom builds in our private forum.