⚡ Only 300 spots remaining • Closes in 2d 14h 32m

Back to Workflow Library
Social Media

Mastodon Auto-Post Cross-Poster

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.

#Mastodon
#RSS
#Social Media
#Blog Sync
#Automation

Automation Logic

n8n JSON Blueprint

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.

QUICK DEPLOY

  • 1
    Download the .json file
  • 2
    Open n8n & click "Import"
  • 3
    Configure your API keys

PRO TIP

Always test your workflow in a development environment before pushing to production.

JSON BLUEPRINT

n8n-workflow.json
{
  "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.

IMPLEMENTATION GUIDE

Required Nodes

  • Mastodon Node
  • RSS Node
  • Social Media Node
  • Blog Sync Node
  • Cron / Webhook Trigger

Core Benefits

  • 100% Automated Execution
  • Reduces Manual Data Entry
  • Infinite Scalability

Need Help Building Your Private Cloud?

Join the elite marketers who have offloaded their entire backend to n8n. Get direct support and custom builds in our private forum.

user