Skip to main content

Generate business research reports with Claude, web search and Google Drive

Workflow preview

Workflow preview
100%
Generate business research reports with Claude, web search and Google Drive preview
Open on n8n.io

1. Workflow Overview

This workflow is a fully automated AI powered business intelligence agent. It accepts a research topic or company name via webhook, autonomously collects data from multiple live sources (web search...

Best for

  • Market Research automation workflows
  • Multimodal AI automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.stickynote, n8n-nodes-base.webhook, n8n-nodes-base.set, n8n-nodes-base.if, n8n-nodes-base.respondtowebhook, n8n-nodes-base.httprequest, n8n-nodes-base.code, n8n-nodes-base.googlesheets

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Oneclick AI Squad.

Original n8n.io source

1.1 Workflow description

Title
Generate business research reports with Claude, web search and Google Drive
Workflow name
Generate business research reports with Claude, web search and Google Drive

This workflow is a fully automated AI-powered business intelligence agent. It accepts a research topic or company name via webhook, autonomously collects data from multiple live sources (web search, news feeds, financial APIs), runs a multi-stage Claude AI analysis pipeline, and delivers a structured professional business report — all without human intervention.

What's the Goal?

To eliminate the hours analysts spend manually gathering data, switching between tools, and writing reports. This workflow does it all in under 3 minutes:

  • Collects live market and competitor data
  • Pulls recent news and sentiment signals
  • Runs deep AI analysis across all sources
  • Generates a structured executive report with SWOT, risks, and opportunities
  • Delivers the final report via email and saves to Google Drive

Why Does It Matter?

Manual business research is slow, inconsistent, and expensive. This workflow:

  • Saves 4-8 hours of analyst time per report
  • Produces consistent, structured outputs every time
  • Runs on a schedule or on-demand via API
  • Scales to any number of topics or companies
  • Integrates directly into your CRM, Slack, or email
  • Generates billable deliverables for consulting agencies

How It Works

Stage 1 — INTAKE Webhook receives a research request. Set node normalizes all inputs and stores credentials. IF node validates the request has a valid topic.

Stage 2 — DATA COLLECTION (parallel) Three HTTP Request nodes run simultaneously:

  • Serper.dev fetches top 10 Google results for the topic
  • NewsAPI pulls the latest 10 news articles from the past 7 days
  • Alpha Vantage fetches financial/market data if a ticker is provided

Stage 3 — DATA PROCESSING Code node merges and cleans all collected data. Extracts headlines, snippets, URLs, publication dates, sentiment signals, and key figures into a structured context object ready for AI analysis.

Stage 4 — AI ANALYSIS (3-pass Claude pipeline) Pass 1 — Research Synthesis: Claude reads all raw data and extracts key facts, trends, and signals Pass 2 — Strategic Analysis: Claude performs SWOT analysis, identifies risks and opportunities Pass 3 — Report Generation: Claude writes the final structured executive report in Markdown

Stage 5 — OUTPUT & DELIVERY Report is saved to Google Drive as a document. Summary is posted to Slack. Full report is emailed via SendGrid. All metadata is logged to Google Sheets. Webhook returns JSON response.

Configuration Requirements

  • ANTHROPIC_API_KEY — Claude AI (claude-sonnet-4-20250514)
  • SERPER_API_KEY — Google Search results (serper.dev, free tier available)
  • NEWSAPI_KEY — News articles (newsapi.org, free tier available)
  • ALPHA_VANTAGE_KEY — Financial data (alphavantage.co, free tier available)
  • SENDGRID_API_KEY — Email delivery
  • SLACK_WEBHOOK_URL — Slack notifications
  • GOOGLE_DRIVE_FOLDER_ID — Where to save reports
  • GOOGLE_SHEET_ID — Report audit log

Setup Guide

Step 1: Import this workflow into your n8n instance Step 2: Open the Set Credentials node and replace all placeholder values with your real API keys Step 3: Set your GOOGLE_SHEET_ID in the Log to Sheets node Step 4: Set your GOOGLE_DRIVE_FOLDER_ID in the Save to Drive node Step 5: Configure your Slack webhook URL in the Notify Slack node Step 6: Activate the workflow or trigger manually via POST

Sample Request

POST /webhook/business-report { "topic": "OpenAI market position 2025", "company": "OpenAI", "ticker": "", "industry": "Artificial Intelligence", "reportType": "competitive_analysis", "recipientEmail": "[email protected]", "urgency": "standard" }

Report Types Supported

  • competitive_analysis
  • market_research
  • industry_overview
  • company_profile
  • investment_brief

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Main Overview

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 2 - Stage 1 Label

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 3 - Stage 2 Label

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 4 - Stage 3 Label

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 5 - Stage 4 Label

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 6 - Stage 5 Label

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 7 - Receive Research Request

Type / Role
n8n-nodes-base.webhook - webhook
Config choices
Version 2

Block 8 - Set Credentials and Config

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3.4

Block 9 - Validate Input

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.2

Block 10 - Return Validation Error

Type / Role
n8n-nodes-base.respondToWebhook - respondToWebhook
Config choices
Version 1.1

Block 11 - Search Google via Serper

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 12 - Fetch News Articles

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 13 - Fetch Market Data

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 14 - Merge and Clean Data

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 15 - Claude Pass 1 Research Synthesis

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 16 - Extract Pass 1 Output

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 17 - Claude Pass 2 Strategic SWOT

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 18 - Extract Pass 2 Output

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 19 - Claude Pass 3 Write Final Report

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 20 - Format Final Report Package

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 21 - Save Report to Google Drive

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 22 - Post Summary to Slack

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 23 - Email Full Report via SendGrid

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 24 - Log to Google Sheets

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.5

Showing the first 24 of 26 workflow blocks. Download the JSON for the full node graph.

3. Summary Table

Workflow Generate business research reports with Claude, web search and Google Drive
Complexity advanced
Nodes 26
Categories Market Research, Multimodal AI
Author Oneclick AI Squad
Published 02 Mar 2026

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/13805/13805.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Generate business research reports with Claude, web search and Google Drive do?

This workflow is a fully automated AI powered business intelligence agent. It accepts a research topic or company name via webhook, autonomously collects data from multiple live sources (web search...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Market Research, Multimodal AI use case.