Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

n8n-qdrantN8N qdrant 搜索

Agent Skill

n8n-qdrant 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,306

周安装

142

GitHub Stars

公开资料未说明

下载量

1,159
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:n8n-qdrant(N8N qdrant 搜索)
来源仓库:https://github.com/encryptshawn/n8n-qdrant
安装命令:
openclaw skills install n8n-qdrant
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install n8n-qdrant

简介

拥有针对 Qdrant 摄取、检索、混合搜索和 RAG 管道设计、构建生产级 n8n 工作流程并进行故障排除的专业知识。

SKILL.md

n8n + Qdrant: Ingestion & RAG Pipeline Skill

Overview

This skill enables AI agents to design, build, and troubleshoot production-grade Qdrant ingestion and retrieval pipelines in n8n. It covers the full lifecycle: source data extraction → chunking → metadata enrichment → vector embedding → Qdrant upsert → retrieval (dense, sparse, hybrid) → RAG response generation.

Always read the supporting docs in /docs/ before building workflows:

  • docs/NODE-REFERENCE.md — Every Qdrant node, mode, and parameter explained
  • docs/INGESTION-PIPELINE.md — Step-by-step ingestion architecture
  • docs/RAG-RETRIEVAL.md — Dense, sparse, and hybrid retrieval patterns
  • docs/CHUNKING-METADATA.md — Chunking strategies and metadata schema design
  • docs/examples/ — Annotated workflow JSON examples

Two Node Systems to Know

n8n has two separate Qdrant integration systems — knowing which to use is critical:

1. Official Qdrant Node (n8n-nodes-qdrant)

  • Package: n8n-nodes-qdrant (community node, install via n8n Settings → Community Nodes)
  • Purpose: Direct Qdrant API operations — collection management, point upsert/delete/scroll, search queries
  • Node name in editor: Qdrant
  • Use for: Building custom ingestion pipelines, running Query Points (dense/sparse/hybrid search), collection setup, point management
  • GitHub: https://github.com/qdrant/n8n-nodes-qdrant

2. LangChain Vector Store Node (built-in)

  • Package: Built into n8n's AI/LangChain nodes
  • Purpose: LangChain-compatible vector store integration — connects with Document Loaders, Text Splitters, Embeddings, and AI Agents
  • Node name in editor: Qdrant Vector Store (@n8n/n8n-nodes-langchain.vectorStoreQdrant)
  • Use for: LangChain-style RAG pipelines, AI Agent tool integration, retrieve-as-tool mode
  • Modes: insert (ingest documents), retrieve (similarity search), retrieve-as-tool (AI agent tool)

Rule of thumb: Use LangChain Vector Store for LangChain-native agent/RAG flows. Use the Official Qdrant Node for direct API control, hybrid search, payload operations, and production ingestion pipelines.


Quick Decision Matrix

GoalUse This NodeMode/Operation
Ingest documents via LangChain chainLangChain Vector Storeinsert
AI Agent retrieves from Qdrant as toolLangChain Vector Storeretrieve-as-tool
Run hybrid (dense+sparse) searchOfficial Qdrant NodeSearch → Query Points
Create/manage collectionsOfficial Qdrant NodeCollection → Create Collection
Upsert raw points with custom payloadsOfficial Qdrant NodePoint → Upsert Points
Delete points by filter (e.g. file_id)Official Qdrant NodePoint → Delete Points
Scroll all points for audit/exportOfficial Qdrant NodePoint → Scroll Points
Batch ingest large datasetsOfficial Qdrant NodePoint → Batch Update Points

Canonical Ingestion Pipeline Architecture

[Trigger]
    │
    ▼
[Source Node] ──────────────────────────────────────────────
(Slack, Fireflies, Google Drive, HTTP, DB, etc.)             │
    │                                                         │
    ▼                                                         │
[Split in Batches]  ←── Loop for large datasets              │
    │                                                         │
    ▼                                                         │
[Extract/Normalize]                                          │
(Set node: build content string + raw metadata)              │
    │                                                         │
    ▼                                                         │
[AI: Extract Metadata]                                       │
(Information Extractor or LLM Chain)                         │
Produces: themes, keywords, entities, summary, tags          │
    │                                                         │
    ▼                                                         │
[Text Splitter]                                              │
(Token Splitter or Recursive Character Splitter)             │
chunkSize: 512–2000 tokens, overlap: 10–15%                  │
    │                                                         │
    ▼                                                         │
[Embeddings Node]                                            │
(OpenAI text-embedding-3-large or similar)                   │
    │                                                         │
    ▼                                                         │
[Qdrant Vector Store — insert mode]  OR                      │
[Official Qdrant Node — Upsert Points]                       │
    │                                                         │
    ▼                                                         │
[Wait Node]  ←── Rate limiting / backpressure                │
    │                                                         │
    └─────────────────── back to Split in Batches ───────────┘

See docs/INGESTION-PIPELINE.md for full node-by-node configuration.


Canonical RAG Retrieval Architecture

[Chat Trigger / Webhook]
    │
    ▼
[AI Agent Node]
    │
    ├── [LLM: Gemini / GPT-4o / Claude]
    ├── [Memory: Window Buffer Memory]
    └── [Tool: Qdrant Vector Store — retrieve-as-tool]
              │
              └── [Embeddings Node]

For hybrid search (dense + sparse), use the Official Qdrant Node → Query Points with a prefetch array combining dense and sparse queries + RRF fusion. See docs/RAG-RETRIEVAL.md.


Credentials Setup

Official Qdrant Node

  • Credential type: qdrantApi
  • Fields: URL (e.g. https://your-cluster.cloud.qdrant.io) + API Key

LangChain Vector Store Node

  • Credential type: qdrantApi (same credential, shared)

Qdrant Cloud Setup

  1. Open https://cloud.qdrant.io → select cluster
  2. Copy Endpoint → use as URL
  3. Go to API Keys tab → copy key

Local (Docker / AI Starter Kit)

  • URL: http://qdrant:6333/
  • Set QDRANT_API_KEY=your_key in docker-compose environment

Naming Conventions

Use consistent naming across workflows:

ElementConventionExample
Collection name{org}-{source}-{content-type}acme-slack-messages
Metadata key for source IDsource_id"source_id": "C01234-1709123456"
Metadata key for document IDdoc_id"doc_id": "file_abc123"
Metadata key for chunk indexchunk_index"chunk_index": 3
Metadata key for timestampcreated_atISO 8601 string
Metadata key for source typesource_type"slack", "fireflies", "gdrive"
Metadata key for channel/foldersource_context"#engineering"

Critical Rules

  1. Always set file_id or doc_id in metadata — enables targeted deletion without full collection wipe
  2. Always use onError: continueRegularOutput on the Qdrant Vector Store node — prevents single-item failures from crashing the whole batch
  3. Always use retryOnFail: true on the Qdrant node for production ingestion
  4. Chunk before embedding — never embed full documents; always split first
  5. Never store raw text in collection names or keys — normalize to lowercase slug format
  6. Use Split in Batches with a Wait node for large datasets — prevents API rate limit errors and memory exhaustion
  7. Run metadata extraction BEFORE the text splitter — extract from the full document, then attach metadata to each chunk
  8. For delete operations, always add human-in-the-loop confirmation (Telegram sendAndWait, Slack approval, etc.)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

86.15%
按下载量换算998

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills