Skip to content
All writing
Automation May 02, 2026 · 7 min read

5 n8n automations that save me 20 hours a week (with screenshots you can copy)

n8n is free, self-hosted, and more powerful than Zapier for AI workflows. Here are the 5 exact automations I run for client work — lead scoring, content briefs, review responses, competitor monitoring, and social repurposing.

SK

Shezad Ali Khan

CMO · Trainer · Mumbai

Every marketing influencer says “automate your workflows.” Nobody shows you the actual workflow.

I run 5 automations in n8n that collectively save 20+ hours per week across client work, content production, and business operations. Each one took 2–4 hours to build. They’ve been running for months.

Here’s exactly what they do, how they work, and how you can build them.

Code on a computer screen — the automation backbone The unsexy truth about marketing automation: the most valuable workflows aren’t clever. They’re the ones that eliminate the boring task you do 50 times a week.

Why n8n (and not Zapier or Make)

Quick context for anyone who hasn’t chosen yet:

n8nZapierMake.com
CostFree (self-hosted) or $20/mo$19.99/mo (limited)$9/mo (limited)
AI integrationDirect API calls to Claude/GPT — full controlPre-built AI actions (less flexible)Good AI modules
Data privacyYour server, your dataTheir cloudTheir cloud
ComplexityHandles branching, loops, error handlingSimple linear workflowsMedium complexity
Best forMarketers who want full control + AI pipelinesSimple automationsVisual workflow builders

I use n8n because: it’s free when self-hosted, the data stays on my server (important under India’s DPDP Act), and it handles complex AI workflows that Zapier can’t.

Setup: I run n8n on a ₹500/month DigitalOcean VPS. Total setup time: 30 minutes. If you don’t want to self-host, n8n Cloud is $20/month.

Automation 1: Lead qualification + CRM routing

The problem it solves: A contact form submission comes in. I used to manually read it, assess if it’s a real lead or spam, figure out which service they need, and add them to my CRM. This took 5–10 minutes per lead, 3–5 times a day.

How the workflow works:

  1. Trigger: New Tally.so form submission (webhook)
  2. AI step: Claude Sonnet reads the form response and scores the lead:
    • Is this a genuine business enquiry? (Yes/No)
    • Which service matches their need? (SEO / Web Dev / Consulting / Training)
    • Urgency: High (immediate need), Medium (exploring), Low (just browsing)
    • Budget indicator based on company description
  3. Branching logic:
    • High urgency → Sends me a WhatsApp notification immediately
    • Medium urgency → Adds to CRM with “follow up this week” tag
    • Low/spam → Archives with no notification
  4. Output: Lead added to Google Sheet CRM with all AI-extracted fields

Time saved: ~45 minutes/day (was reading and sorting leads manually)

The Claude prompt I use:

You are a lead qualification assistant for a digital marketing consultant in Mumbai.

Analyse this form submission and return JSON with:
- is_genuine: true/false
- service_match: one of [SEO, Web Dev, Consulting, Training, Other]
- urgency: High/Medium/Low
- budget_indicator: Based on company description, estimate Low (<50K), Medium (50K-1.5L), High (>1.5L)
- summary: One sentence describing what they need

Form data: {form_fields}

Automation 2: Blog brief generation from keyword approval

The problem it solves: When I approve a keyword for a client’s content calendar, someone needs to create a detailed content brief — target keyword, search intent, outline, competitor analysis, word count recommendation. This used to take 45 minutes per brief.

How the workflow works:

  1. Trigger: When a row in Google Sheets gets status changed to “Approved”
  2. Step 1: n8n extracts the keyword and target URL
  3. Step 2: HTTP node fetches the top 5 Google results for that keyword (via SerpAPI — $50/month for 5,000 searches)
  4. Step 3: Claude analyses the top results:
    • What topics do the top 5 pages cover?
    • What’s missing from existing content?
    • Suggested H2/H3 outline for our post
    • Recommended word count
    • Internal linking opportunities (from a pre-loaded sitemap)
  5. Step 4: Brief created as a Notion page with all fields filled
  6. Output: Writer gets a Slack notification with link to brief

Time saved: 4–6 hours/week (was creating 5–8 briefs manually per week)

Automation 3: Google review response drafts

The problem it solves: Clients get Google reviews that need responses within 24 hours. Reviews directly impact Maps rankings. Writing thoughtful, unique responses takes time — especially when you’re managing reviews for 5+ businesses.

How the workflow works:

  1. Trigger: Scheduled check every 6 hours — n8n polls Google Business Profile API for new reviews
  2. Step 1: For each new review, Claude generates a response draft:
    • For 4–5 star reviews: Warm, specific thank you referencing their comment
    • For 1–3 star reviews: Empathetic acknowledgment + offer to resolve offline
    • Tone matches the business (casual for restaurants, professional for clinics)
  3. Step 2: Draft saved to a Google Sheet with: business name, reviewer name, rating, review text, AI draft response
  4. Step 3: I review the sheet once daily, tweak if needed, approve
  5. Output: Approved responses are copied and posted manually (Google doesn’t allow automated posting of review responses — the human step is mandatory)

Time saved: 3–4 hours/week (was writing responses individually)

The prompt that makes responses feel human:

Write a Google review response for a {business_type} in Mumbai.

Review: {review_text}
Rating: {star_rating}

Rules:
- Reference something specific from their review (don't be generic)
- If positive: thank them warmly, mention you appreciate the specific thing they praised
- If negative: acknowledge their experience without being defensive, offer to resolve offline at {business_phone}
- Keep it under 100 words
- Never sound like a template
- Use the reviewer's first name
- Match the tone: {casual/professional}

Automation 4: Competitor content monitoring

The problem it solves: I need to know when competitors publish new content, change their pricing, or shift strategy. Manually checking 15 competitor websites weekly takes 2+ hours.

How the workflow works:

  1. Trigger: Every Monday at 8am
  2. Step 1: n8n fetches RSS feeds from 15 competitor blogs (HTTP node)
  3. Step 2: For any new posts published since last Monday, Claude summarises:
    • Topic and key arguments
    • Keywords they’re targeting
    • What’s different from existing content on this topic
    • Opportunity for us (can we write something better?)
  4. Step 3: Summary compiled into one Slack message per client
  5. Output: I start Monday with a competitor intelligence brief that took zero manual effort

Time saved: 2 hours/week (was manually reviewing competitor sites)

Automation 5: Blog to social media repurposing

The problem it solves: Every blog post should become 5–8 social media posts. But repurposing manually — pulling quotes, rewriting for each platform, creating variations — takes 30–45 minutes per blog post.

How the workflow works:

  1. Trigger: New blog post published (webhook from CMS or RSS)
  2. Step 1: n8n fetches the full blog content
  3. Step 2: Claude generates:
    • 3 LinkedIn post variations (different angles from the same article)
    • 3 Twitter/X posts (concise, punchy takes)
    • 2 Instagram caption variations (with hashtag suggestions)
    • 1 newsletter teaser paragraph
  4. Step 3: All variations saved to a Google Sheet, organised by platform
  5. Step 4: I review, tweak 20% of them, and schedule in Buffer
  6. Output: One blog post becomes 8–9 social posts with 15 minutes of human editing instead of 45 minutes of writing from scratch

Time saved: 3–5 hours/week (across 3–4 blog posts)

How to get started with n8n

If you’re technical:

  1. Spin up a ₹500/month DigitalOcean VPS (2GB RAM is enough)
  2. Install n8n via Docker: docker run -d --name n8n -p 5678:5678 n8nio/n8n
  3. Access at your-ip:5678
  4. Start building

If you’re not technical:

  1. Sign up at n8n.io/cloud ($20/month)
  2. Use their visual workflow builder — no code needed
  3. Start with Automation 5 (blog → social) — it’s the simplest and most immediately useful

The learning curve:

  • Day 1: Build a simple webhook → AI → Google Sheet workflow
  • Week 1: Build automations 3 and 5 (review responses and social repurposing)
  • Week 2–3: Build automations 1 and 4 (lead scoring and competitor monitoring)
  • Month 2: Build automation 2 (content briefs — this one needs SerpAPI integration)

The compound effect

Each automation saves 2–5 hours per week. Combined, that’s 20+ hours — half a work week. But the real value isn’t time saved. It’s consistency.

The review responses go out within 6 hours, every time. The competitor brief arrives every Monday, without fail. Every blog post becomes social content the same day it’s published.

The AI marketing stack isn’t about tools. It’s about building systems that run whether or not you’re at your desk.

The best automation isn’t the cleverest one. It’s the one that eliminates the task you keep postponing. Start there.

#n8n #automation #ai #marketing #workflows #india #productivity