Imagine With Craft

Automated Daily Digest

Wire an RSS feed to a Craft collection in n8n. New articles appear in your Craft workspace automatically — no copy-pasting, no manual updates.

Automated Daily Digest

Build It Yourself

Step 1Enable API Access

Enable read/write API access on your Craft document. n8n needs write access to create new collection items and read access to list your collections.

Step 1

"상상해보기" 탭을 열어보세요

Step 2

"첫 번째 API 추가"를 클릭하세요

Step 3

API 연결에 이름을 설정하세요

Step 4

"문서 추가"를 클릭한 뒤 News Collection 문서를 선택하세요.

Step 5

문서와 연결되는 API URL이 이제 상단에 표시됩니다

Step 2 — Install the Craft Node in n8n

Open your n8n instance and go to Settings → Community nodes. Click Install a community node and search for n8n-nodes-craft. This adds the Craft node with 26 actions — including the one we need: Create collection items. For the full list of available actions, see the n8n setup guide.

Step 3 — Add the RSS Feed Trigger

Create a new workflow in n8n. Click Add first step and select RSS Feed Trigger. Configure it:

  • Feed URL — the RSS feed you want to collect, for example:
https://news.ycombinator.com/rss
  • Poll Times — how often n8n checks for new items (e.g. every minute, every hour)

Click Fetch Test Event to verify the feed returns data. You should see items with title, link, and pubDate fields in the output.

Step 4 — Connect Your Craft Credentials

Click the + after the RSS Feed Trigger and search for Craft. Select the Create collection items action. In the Credential to connect with dropdown, select Create new Craft account credential and fill in:

  • API Base URL — paste the URL from Step 1
  • API Key — paste the key from Step 1
  • Connection TypeFull Space Connection
  • PermissionsRead + Write

Step 5 — Configure the Craft Node

Once the credential is saved, configure the node itself:

  • ResourceCollection
  • OperationCreate Items
  • Collection — pick your target collection from the dropdown (e.g. “News”)
  • Items — paste the following JSON to map RSS fields to collection columns:
[{"title": "{{ $json.title }}", "properties": {"link": "{{ $json.link }}"}}]

Step 6 — Test and Activate

Click Execute workflow to test the full flow. If both nodes show green checkmarks and “1 item”, the RSS entry was successfully saved to your Craft collection.

Once verified, click Publish in the top-right corner to activate the workflow. From now on, n8n will poll your RSS feed on the schedule you set and automatically create new items in your Craft collection.

The Result

New articles from your favorite feeds appear in Craft automatically. No browser tabs, no copy-pasting — just open your collection and everything is there. Swap the RSS feed for any source you want to track: industry news, blog posts, release notes, competitor updates.

More Ideas For You To Try

Back to the Gallery