# Remix: Auto Slack alerts from RSS via n8n

> RSS → n8n parses → ChatGPT summarises → Slack channel posts.

**Author:** @alice · **Created:** 2026-06-07 · **Steps:** 5 · **Tags:** `#n8n`, `#slack`, `#automation`, `#rss`

## Steps

### 1. 🔗 Poll RSS feed every 10 min

Run the workflow trigger:

```python
import requests

def trigger_n8n(message):
    requests.post(
        'https://n8n.example/webhook/abc',
        json={'text': message}
    )
```

Make sure your webhook URL is **private**. Use *env vars* for tokens.

> Tip: test with a [free n8n cloud trial](https://n8n.io/cloud) first.

**Tool:** [n8n](https://toolstory.ai/tools/71872/n8n/)
 · website: https://n8n.io


### 2. 🤖 Summarise the article with LLM

**Tool:** [Grok](https://toolstory.ai/tools/74175/grok/)
 · website: https://grok.com


### 3. 📲 Post the summary to the team chat

**Tool:** [WhatsApp](https://toolstory.ai/tools/95225/whatsapp/)
 · website: http://www.whatsapp.com/


### 4. 📲 Log message to monitoring channel

**Tool:** [Discord](https://toolstory.ai/tools/95290/discord/)
 · website: https://discord.com/


### 5. 📲 Telegram Messenger

**Tool:** [Telegram Messenger](https://toolstory.ai/tools/94782/telegram-messenger/)
 · website: https://telegram.org/



---

_Source: [https://toolstory.ai/ru/stacks/wf/42/remix-auto-slack-alerts-from-rss-via-n8n/](https://toolstory.ai/ru/stacks/wf/42/remix-auto-slack-alerts-from-rss-via-n8n/) · AI Tools Catalog_
