AutomationFlowsSocial Media › Schedule RSS to Twitter, Facebook & Slack

Schedule RSS to Twitter, Facebook & Slack

Original n8n title: AI Content Pipeline

AI Content Pipeline. Uses schedule, rss, httpRequest, twitter. Scheduled trigger; 7 nodes.

Cron / scheduled trigger★★☆☆☆ complexity7 nodesScheduleRSSHTTP RequestTwitter
Social Media Trigger: Cron / scheduled Nodes: 7 Complexity: ★★☆☆☆ Added:

This workflow follows the HTTP Request → Twitter recipe pattern — see all workflows that pair these two integrations.

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 →

Download .json
{
  "name": "AI Content Pipeline",
  "nodes": [
    {
      "parameters": {
        "triggerTimes": {
          "item": [
            {
              "mode": "everyX",
              "hour": 1,
              "minute": 0
            }
          ]
        }
      },
      "id": "Schedule_Trigger",
      "name": "Schedule Trigger",
      "type": "n8n-nodes-base.schedule",
      "typeVersion": 1,
      "position": [
        250,
        300
      ]
    },
    {
      "parameters": {
        "url": "=YOUR_RSS_FEED_URL",
        "options": {}
      },
      "id": "RSS_Feed_Reader",
      "name": "RSS Feed Reader",
      "type": "n8n-nodes-base.rss",
      "typeVersion": 1,
      "position": [
        450,
        300
      ]
    },
    {
      "parameters": {
        "method": "POST",
        "url": "=https://api.anthropic.com/v1/messages",
        "authentication": "none",
        "sendHeaders": true,
        "headerParameters": {
          "parameters": [
            {
              "name": "x-api-key",
              "value": "={{$env[\"ANTHROPIC_API_KEY\"]}}"
            },
            {
              "name": "anthropic-version",
              "value": "2023-06-01"
            }
          ]
        },
        "contentType": "application/json",
        "body": "={\n  \"model\": \"claude-3-5-sonnet-20241022\",\n  \"max_tokens\": 1024,\n  \"messages\": [\n    {\n      \"role\": \"user\",\n      \"content\": \"Summarize this content in 2-3 sentences suitable for social media and make it engaging. Keep it under 280 characters:\\n\\n{{$node[\\\"RSS Feed Reader\\\"].json.description}}\"\n    }\n  ]\n}"
      },
      "id": "Claude_Summarizer",
      "name": "Claude Summarizer",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.2,
      "position": [
        650,
        300
      ]
    },
    {
      "parameters": {
        "method": "POST",
        "url": "=https://api.twitter.com/2/tweets",
        "authentication": "oAuth2",
        "oauthType": "oAuth2",
        "contentType": "application/json",
        "body": "={\n  \"text\": \"{{$node[\\\"Claude Summarizer\\\"].json.content[0].text}}\\n\\nRead more: {{$node[\\\"RSS Feed Reader\\\"].json.link}}\"\n}"
      },
      "id": "Twitter_Post",
      "name": "Twitter Post",
      "type": "n8n-nodes-base.twitter",
      "typeVersion": 1,
      "position": [
        850,
        200
      ]
    },
    {
      "parameters": {
        "method": "POST",
        "url": "=YOUR_FACEBOOK_GRAPH_API_ENDPOINT",
        "authentication": "none",
        "contentType": "application/json",
        "body": "={\n  \"message\": \"{{$node[\\\"Claude Summarizer\\\"].json.content[0].text}}\\n\\n\ud83d\udcd6 {{$node[\\\"RSS Feed Reader\\\"].json.title}}\\n{{$node[\\\"RSS Feed Reader\\\"].json.link}}\",\n  \"access_token\": \"={{$env[\\\"FACEBOOK_PAGE_TOKEN\\\"]}}\"\n}"
      },
      "id": "Facebook_Post",
      "name": "Facebook Post",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.2,
      "position": [
        850,
        400
      ]
    },
    {
      "parameters": {
        "method": "POST",
        "url": "=https://hooks.slack.com/services/YOUR/WEBHOOK/URL",
        "authentication": "none",
        "contentType": "application/json",
        "body": "={\n  \"text\": \"Content Posted Successfully\",\n  \"blocks\": [\n    {\n      \"type\": \"section\",\n      \"text\": {\n        \"type\": \"mrkdwn\",\n        \"text\": \"\u2705 New article posted\\\\n*{{$node[\\\"RSS Feed Reader\\\"].json.title}}*\\\\n{{$node[\\\"RSS Feed Reader\\\"].json.link}}\"\n      }\n    }\n  ]\n}"
      },
      "id": "Slack_Notification",
      "name": "Slack Notification",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.2,
      "position": [
        1050,
        300
      ]
    },
    {
      "parameters": {
        "method": "POST",
        "url": "=https://api.telegram.org/bot{{$env[\"TELEGRAM_BOT_TOKEN\"]}}/sendMessage",
        "authentication": "none",
        "contentType": "application/json",
        "body": "={\n  \"chat_id\": \"={{$env[\\\"TELEGRAM_CHAT_ID\\\"]}}\",\n  \"text\": \"\u26a0\ufe0f Error in content pipeline:\\n{{$error.message}}\",\n  \"parse_mode\": \"HTML\"\n}"
      },
      "id": "Error_Handler",
      "name": "Error Handler",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.2,
      "position": [
        1050,
        550
      ]
    }
  ],
  "connections": {
    "Schedule_Trigger": {
      "main": [
        [
          {
            "node": "RSS_Feed_Reader",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "RSS_Feed_Reader": {
      "main": [
        [
          {
            "node": "Claude_Summarizer",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Claude_Summarizer": {
      "main": [
        [
          {
            "node": "Twitter_Post",
            "type": "main",
            "index": 0
          },
          {
            "node": "Facebook_Post",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Twitter_Post": {
      "main": [
        [
          {
            "node": "Slack_Notification",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Facebook_Post": {
      "main": [
        [
          {
            "node": "Slack_Notification",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "active": true,
  "settings": {
    "executionOrder": "v1"
  },
  "id": "1"
}
Pro

For the full experience including quality scoring and batch install features for each workflow upgrade to Pro

About this workflow

AI Content Pipeline. Uses schedule, rss, httpRequest, twitter. Scheduled trigger; 7 nodes.

Source: https://github.com/foxck016077/claude-code-starter/blob/main/n8n-templates/1-ai-content-pipeline.json — original creator credit. Request a take-down →

More Social Media workflows → · Browse all categories →

Related workflows

Workflows that share integrations, category, or trigger type with this one. All free to copy and import.

Social Media

Share Jokes On Twitter Automatically. Uses httpRequest, twitter. Scheduled trigger; 4 nodes.

HTTP Request, Twitter
Social Media

Social media managers, creators, and brand accounts that rely on retweets for reach but want an automated, hands-off cleanup after campaigns to keep profiles tidy and on-brand.

HTTP Request, Twitter, Slack +1
Social Media

This workflow monitors brand mentions across multiple platforms (Twitter/X, Reddit, News) and automatically detects reputation crises based on sentiment analysis and trend detection. Multi-platform mo

Twitter, Reddit, HTTP Request +3
Social Media

Creator: Summer Chang

HTTP Request, Notion, Twitter
Social Media

FootballAnalytics AI Brain Workflow. Uses httpRequest, twitter. Scheduled trigger; 10 nodes.

HTTP Request, Twitter