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

自分で構築する

ステップ1APIアクセスを有効にする

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.

ステップ1

ドキュメント内で、右上にある「Imagine」ボタンをクリックします。

ステップ2

パネルの下部にある「Enable API」をクリックします。

ステップ3

あなたのドキュメントとやり取りするために使用される API URL が、上部に表示されるようになりました。

ステップ4

「Add Document」から 「News Collection 」ドキュメントを選択。

ステップ5

このプロジェクトでは、API はあなたのドキュメントへの書き込みだけを行えば十分です。 API の権限を「Write(書き込み)」のみに設定してください。

ステップ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.

ステップ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.

ステップ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

ステップ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 }}"}}]

ステップ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.

あなたにおすすめのアイデア

ギャラリーに戻る