Run AI Guide
How I Built an AI Content Generator That Saves Me 3 Hours Per Week Using n8n and Claude
ai automation7 min read

How I Built an AI Content Generator That Saves Me 3 Hours Per Week Using n8n and Claude

Ad Slot: Header Banner

How I Built an AI Content Generator That Saves Me 3 Hours Per Week Using n8n and Claude

TL;DR: I automated content idea generation and article summarization using n8n workflows connected to Claude API. Takes 30 minutes to set up, saves me roughly 12 hours monthly, and costs about $15/month to run.

I was spending 12+ hours every month manually brainstorming social media content for clients and summarizing research articles. This repetitive work was eating into my billable consulting hours and frankly making me dread Monday mornings.

The time drain was costing me roughly $600 in lost revenue each month (at my $50/hour rate). I needed a system that could generate decent first drafts while I focused on strategy and client relationships.

Ad Slot: In-Article

In early 2026, I built two n8n workflows using Claude API that now handle this grunt work automatically. Here's exactly how I did it.

The Problem: Manual Content Creation Was Killing My Productivity

As a marketing consultant working with 8 clients, I faced two recurring time sinks:

Content ideation: Each client needed 5 social media post ideas weekly • Research summarization: I read 10-15 industry articles per week to stay current

The math was brutal: • 40 content ideas weekly × 10 minutes each = 6.7 hours • 12 article summaries × 25 minutes each = 5 hours • Total: 11.7 hours of repetitive work per week

The Exact Workflow I Built

Content Idea Generator Workflow

Step 1: Set up Manual Trigger node in n8n

  • Created new workflow called "Content Ideas Generator"
  • Added Manual Trigger as starting point for testing

Step 2: Configure Claude API node

  • Added Anthropic Claude node from n8n's integrations
  • Used Claude-3-haiku-20240307 model (cheaper for simple tasks)
  • Set max tokens to 500

Step 3: Write the content generation prompt

Generate 5 social media post ideas for [INDUSTRY]. Each idea must include:
- One compelling headline (under 10 words)
- Two-sentence description of the post content
- Suggested format (carousel, video, text post, story)

Focus on actionable tips, not generic motivational content.

Step 4: Add Gmail node for output delivery

  • Connected Gmail API to send formatted ideas
  • Set recipient to client email from workflow input
  • Added subject line: "Weekly Content Ideas - [DATE]"

Step 5: Format output using Function node

  • Added JavaScript to structure Claude's response into clean email format
  • Removed any markdown formatting for email compatibility

Article Summarization Workflow

Step 1: Create Webhook trigger

  • Set up n8n webhook to receive article URLs
  • Configured to accept POST requests with URL parameter

Step 2: Add HTTP Request node to fetch content

  • Pulls full article text from provided URL
  • Handles basic error checking for failed requests

Step 3: Configure Claude for summarization

Summarize this article in exactly 3 bullet points:
- Main insight or finding
- Practical application or implication
- One specific number, statistic, or concrete detail mentioned

Article text: {{$node["HTTP Request"].json["content"]}}

Step 4: Send summary to Slack

  • Added Slack node to post summary to my #research channel
  • Includes original article URL for reference

Tools Used in My Stack

Tool Purpose Monthly Cost
n8n Cloud Workflow automation platform $20
Claude API Text generation and summarization ~$12
Gmail API Email delivery Free
Slack API Team notifications Free
Total $32

Visual Logic Flow

Content Generator:

Manual Trigger → Claude API → Function Node → Gmail → Client Inbox

Article Summarizer:

Article URL → Webhook → HTTP Request → Claude API → Slack Channel

Example Output: Real Content Ideas Generated

Here's what landed in my client's inbox last Tuesday:


Subject: Weekly Content Ideas - March 12, 2026

Hi Sarah,

Here are this week's content ideas for your real estate business:

1. "3 Hidden Costs Every First-Time Buyer Misses" Create a carousel post breaking down inspection fees, title insurance, and moving costs. Include specific dollar amounts for your local market. Format: Instagram carousel

2. "House Hunting Red Flags: What I Saw Yesterday" Share photos from a recent showing highlighting foundation cracks, water damage signs, and electrical issues. Educational but not scary. Format: Instagram Story series

3. "Mortgage Rates This Week: The Real Numbers" Post current rates with a comparison to last month and last year. Add your take on timing for buyers. Format: Text post with infographic

4. "Behind the Scenes: Why This Deal Almost Fell Through" Tell the story of a recent challenging transaction (anonymized). Focus on how you solved problems. Format: Short video

5. "Ask Me Anything: Real Estate Edition" Host live Q&A addressing common buyer/seller questions from your DMs and comments. Format: Instagram Live


Before vs After: The Numbers

Metric Before Automation After n8n Workflow Difference
Weekly content time 6.7 hours 1.2 hours 5.5 hours saved
Weekly research time 5 hours 1.5 hours 3.5 hours saved
Monthly cost $0 (my time) $32 (tools) -$568 net savings
Content quality Inconsistent Consistent structure More professional
Client satisfaction 7/10 average 8.5/10 average Better feedback

Tip: I still spend 30 minutes weekly reviewing and customizing the AI-generated content before sending. The workflow gives me solid first drafts, not final copy.

What Actually Changed in My Business

The biggest shift wasn't just time savings—it was mental energy. I no longer dread Sunday nights knowing I need to brainstorm 40 content ideas.

My workflow now runs like this: • Monday morning: Trigger content generators for all 8 clients (15 minutes) • Throughout the week: Article summaries arrive automatically in Slack • Friday afternoon: Review and customize AI outputs before client delivery

The quality is roughly 80% of what I'd write manually, but good enough for first drafts. Clients actually prefer the consistent structure and format.

Setup Costs and Difficulty Comparison

Setup Method Time Investment Monthly Cost Technical Skill Needed
Manual work 0 hours $0 None
n8n + Claude 4 hours initial $32 Basic (following tutorials)
Custom Python script 20+ hours $15 Advanced programming
Zapier alternative 2 hours $45+ Beginner

Common Issues I Encountered

Problem 1: Claude occasionally generated generic motivational quotes instead of actionable content. Solution: Added "Focus on actionable tips, not generic motivational content" to my prompt.

Problem 2: Gmail API had authentication issues after 7 days. Solution: Switched to n8n's built-in Gmail integration instead of custom API setup.

Problem 3: Article summarization failed on paywall sites. Solution: Added error handling to skip protected content and notify me in Slack.

What You Can Realistically Expect

If you build similar workflows, expect: • Time savings: 60-80% reduction in content ideation time • Setup time: 2-4 hours for your first working workflow • Monthly costs: $25-50 depending on usage volume • Quality: Good first drafts that need 20-30% editing

The workflows won't replace strategic thinking or client relationships. They handle the repetitive scaffolding so you can focus on customization and strategy.

Tip: Start with one simple workflow. I began with just content generation and added article summarization after getting comfortable with n8n's interface.


You may also want to read: • How to Set Up Gmail API Authentication in n8n Without Coding • Claude vs GPT-4 for Content Generation:

Ad Slot: Footer Banner