Skip to main content

Create AI-ready vector datasets from web content with Claude, Ollama & Qdrant

Workflow preview

Workflow preview
100%
Create AI-ready vector datasets from web content with Claude, Ollama & Qdrant preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

AI Powered Web Data Pipeline with n8n How It Works This workflow builds an AI powered web data pipeline that automates the entire process of: Ex...

Best for

  • Document Extraction automation workflows
  • AI RAG automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.manualtrigger, n8n-nodes-base.stickynote, n8n-nodes-base.set, n8n-nodes-base.httprequest, n8n-nodes-base.code, n8n-nodes-base.if

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by scrapeless official.

Original n8n.io source

1.1 Workflow description

Title
Create AI-ready vector datasets from web content with Claude, Ollama & Qdrant
Workflow name
Create AI-ready vector datasets from web content with Claude, Ollama & Qdrant

AI-Powered Web Data Pipeline with n8n

How It Works

This n8n workflow builds an AI-powered web data pipeline that automates the entire process of:

  • Extraction
  • Structuring
  • Vectorization
  • Storage

It integrates multiple advanced tools to transform messy web pages into clean, searchable vector databases.

Integrated Tools

  • Scrapeless
    Bypasses JavaScript-heavy websites and anti-bot protections to reliably extract HTML content.

  • Claude AI
    Uses LLMs to analyze unstructured HTML and generate clean, structured JSON data.

  • Ollama Embeddings
    Generates local vector embeddings from structured text using the all-minilm model.

  • Qdrant Vector DB
    Stores semantic vector data for fast and meaningful search capabilities.

  • Webhook Notifications
    Sends real-time updates when workflows complete or errors occur.

From messy webpages to structured vector data — this pipeline is perfect for building intelligent agents, knowledge bases, or research automation tools.


Setup Steps

1. Install n8n

> Requires Node.js v18 / v20 / v22

npm install -g n8n
n8n

After installation, access the n8n interface via:

URL: http://localhost:5678


2. Set Up Scrapeless

  1. Register at: Scrapeless
  2. Copy your API token
  3. Paste the token into the HTTP Request node labeled "Scrapeless Web Request"

3. Set Up Claude API (Anthropic)

  1. Sign up at Anthropic Console
  2. Generate your Claude API key
  3. Add the API key to the following nodes:
    • Claude Extractor
    • AI Data Checker
    • Claude AI Agent

4. Install and Run Ollama

macOS
brew install ollama
Linux
curl -fsSL https://ollama.com/install.sh | sh

Windows Download the installer from: https://ollama.com

Start Ollama Server
ollama serve
Pull Embedding Model
ollama pull all-minilm

5. Install Qdrant (via Docker)

docker pull qdrant/qdrant

docker run -d \
  --name qdrant-server \
  -p 6333:6333 -p 6334:6334 \
  -v $(pwd)/qdrant_storage:/qdrant/storage \
  qdrant/qdrant

Test if Qdrant is running:

curl http://localhost:6333/healthz

6. Configure the n8n Workflow

  • Modify the Trigger (Manual or Scheduled)

  • Input your Target URLs and Collection Name in the designated nodes

  • Paste all required API Tokens / Keys into their corresponding nodes

  • Ensure your Qdrant and Ollama services are running

Ideal Use Cases

  • Custom AI Chatbots

  • Private Search Engines

  • Research Tools

  • Internal Knowledge Bases

  • Content Monitoring Pipelines

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 - When clicking 'Test workflow'

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

Block 2 - Sticky Note

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

Block 3 - Set Fields - URL and Webhook URL

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

Block 4 - Scrapeless Web Request

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

Block 5 - Sticky Note1

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

Block 6 - Sticky Note2

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

Block 7 - Sticky Note3

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

Block 8 - Sticky Note4

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

Block 9 - Format Claude Output

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

Block 10 - Check Collection Exists

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

Block 11 - Collection Exists Check

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

Block 12 - Create Qdrant Collection

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

Block 13 - Scrapeless Config Info

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

Block 14 - Claude Data extractor

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

Block 15 - Ollama Embeddings

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

Block 16 - Qdrant Vector store

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

Block 17 - Claude AI Agent

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

Block 18 - Webhook for structured AI agent response

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

Block 19 - Expot data webhook

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

Block 20 - AI Data Checker

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

3. Summary Table

Workflow Create AI-ready vector datasets from web content with Claude, Ollama & Qdrant
Complexity advanced
Nodes 20
Categories Document Extraction, AI RAG
Author scrapeless official
Published 19 May 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/4219/4219.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 Create AI-ready vector datasets from web content with Claude, Ollama & Qdrant do?

AI Powered Web Data Pipeline with n8n How It Works This workflow builds an AI powered web data pipeline that automates the entire process of: Ex...

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 Document Extraction, AI RAG use case.