Skip to content
ai-supply.store
DiscoverCategoriesLeaderboardsCommunityAgent APIFAQ
Sign inSign up free
catalog / Data & ETL / Qdrant
⇄ConnectorData & ETLFree

Qdrant

High-performance vector database with filtering, payload storage, and a REST/gRPC API — built for production AI.

@ai-supply
Installs103k
⟳ upstream v1.18.3 · updated 9d ago
↗ Source repository
← More Data & ETLData & ETL leaderboard →How we grade security →Source ↗
! Grade B · 88/100 · ReviewSecurity assessment
✓No compromise signals16capabilities surfaced1known CVE9of 20 OWASP controls clear
Suspicious network referencesSuspicious code patternsSuspicious network referencesSuspicious code patterns
scanned 7d ago·osv · gitleaks · opengrep · picklescan + heuristics·full breakdown in the Security tab ↓

Qdrant

Qdrant is an open-source vector database and similarity search engine written in Rust. It stores embedding vectors alongside JSON payloads, enabling filtered nearest-neighbor search at scale. It is a popular choice as the retrieval backend for RAG pipelines and agent memory systems.

Key Features

  • Filtered search — combine ANN search with arbitrary JSON payload filters in a single query
  • Named vectors — store multiple embedding spaces per record (dense + sparse + ColBERT)
  • Quantization — scalar and product quantization with on-the-fly rescoring
  • Snapshots — point-in-time collection snapshots for backup and migration
  • Distributed — horizontal sharding and replication built-in
  • REST + gRPC + Web UI — full API surface with an interactive dashboard
  • MCP server — official qdrant-mcp allows agents to store and retrieve memories as vectors

Quick Start

docker run -p 6333:6333 qdrant/qdrant
from qdrant_client import QdrantClient
from qdrant_client.models import Distance, VectorParams, PointStruct

client = QdrantClient(":memory:")
client.create_collection("docs", vectors_config=VectorParams(size=384, distance=Distance.COSINE))
client.upsert("docs", points=[PointStruct(id=1, vector=[0.1]*384, payload={"text": "hello"})])
result = client.search("docs", query_vector=[0.1]*384, limit=3)
print(result)

Install via ai-supply

npx ai-supply add qdrant-vector-store

Curated mirror of the open-source Qdrant project (Apache-2.0). Install upstream from the repository.

Rating rank
#1
of 24 in Data & ETL
Install rank
#14
of 24 in Data & ETL
Security score
88/100 · B
review
Security rank
#6
of 24 in Data & ETL
Installs
103k
cat avg 164k
This listing vs category average
Installs
this
cat avg
Security (of 100)
this
cat avg
Adoption trend
See the Data & ETL leaderboard →
! Security: Review · 8888/100 · grade Bscanned 7d ago
✓ no compromise signals17 risk-surface · 5/20 OWASP controls flagged

Compromise signals — malicious or tampered code (leaked secrets, backdoors, a dropped executable) — reduce the score, and known dependency CVEs carry a bounded penalty (they warrant review but never QUARANTINE — update the dependency to clear). Other dangerous-by-capability traits are risk surface, expected for some capabilities. Every finding is mapped to its OWASP control below.

What this capability can do · low confidence (static)
⚑ network
egress → astral.sh, docker.pkg.github.com, api.github.com, qdrant.tech, blog.rust-lang.org, docs.docker.com, www.lpalmieri.com, qdrant.com +22
auth: api_keygithub.comastral.shdocker.pkg.github.comapi.github.comqdrant.techblog.rust-lang.orgimg.shields.ioapi.qdrant.tech

Findings mapped to the OWASP Top 10 for LLM Applications (2025) and the OWASP Machine Learning Security Top 10. Expand any flagged control for the exact findings — compromise reduces the score; expected/risk-surface do not, except a known CVE, which carries a small bounded penalty (high/critical → Review).

OWASP Top 10 for LLM Applications
⚠LLM03Supply Chainhigh
Vulnerable/compromised dependencies, models or archives in the artifact.
•Vulnerable dependencies — 27 known vulnerabilities in: anyhow@1.0.102, bincode@1.3.3, bincode@2.0.1, crossbeam-epoch@0.9.18, fxhash@0.2.1, memmap2@0.9.10, paste@1.0.15, proc-macro-error2@2.0.1 (CWE-1395)known CVE · -12 pts
⚠LLM05Improper Output Handlinghigh
Code that pipes model/user output into shell, eval, SQL or paths unsafely.
•Suspicious code patterns — pipe-to-shell install · qdrant-qdrant-db8fa43/.github/workflows/coverage.yml (CWE-494)risk surface
•Suspicious code patterns — destructive rm -rf / · qdrant-qdrant-db8fa43/Dockerfile (CWE-78)risk surface
•Suspicious code patterns — OS command execution · qdrant-qdrant-db8fa43/lib/edge/publish/amalgamate.py (CWE-78)risk surface
⚠LLM06Excessive Agencyhigh
Over-broad tool/permission surface or unrestricted egress.
•External endpoints declared — 1 distinct host(s) · qdrant-qdrant-db8fa43/.github/ISSUE_TEMPLATE/flaky_test.mdexpected
•Egress to a private/loopback host — 127.0.0.1 · qdrant-qdrant-db8fa43/.github/workflows/integration-tests.yml (CWE-918)expected
•External endpoints declared — 2 distinct host(s) · qdrant-qdrant-db8fa43/.github/workflows/integration-tests.ymlexpected
•External endpoints declared — 3 distinct host(s) · qdrant-qdrant-db8fa43/Cargo.tomlexpected
•External endpoints declared — 4 distinct host(s) · qdrant-qdrant-db8fa43/Dockerfileexpected
•External endpoints declared — 7 distinct host(s) · qdrant-qdrant-db8fa43/README.mdexpected
•External endpoints declared — 5 distinct host(s) · qdrant-qdrant-db8fa43/docs/CONTRIBUTING.mdexpected
•External endpoints declared — 14 distinct host(s) · qdrant-qdrant-db8fa43/docs/DEVELOPMENT.mdexpected
•Broad capability surface — 3 high-impact capability categories referenced — verify least-privilege · qdrant-qdrant-db8fa43/docs/redoc/master/openapi.json (CWE-272)risk surface
§LLM09MisinformationGovernance
Artifacts designed to produce false/deceptive output.
Detectable only by runtime behavioral evaluation; addressed via responsible-use attestation.
◷LLM10Unbounded ConsumptionRuntime-enforced
Unbounded loops/recursion causing DoS or runaway cost.
Enforced at runtime by the gateway (rate limits + spend caps + size caps); static check flags unbounded loops.
✓LLM01Prompt InjectionPassed
✓LLM02Sensitive Information DisclosurePassed
✓LLM04Data and Model PoisoningPassed
Backdoors/poisoning in training data or serialized models.
Behavioral poisoning needs model execution; static check covers unsafe serialization + dataset skew only.
✓LLM07System Prompt LeakagePassed
✓LLM08Vector and Embedding WeaknessesPassed
PII or plaintext source leakage in embedding/vector exports.
Embedding inversion/poisoning is largely runtime; static check covers PII in vector exports.
OWASP Machine Learning Security Top 10
⚠ML06AI Supply Chainhigh
Compromised PyPI/npm packages, typosquats, unsafe serialized models.
•Vulnerable dependencies — 27 known vulnerabilities in: anyhow@1.0.102, bincode@1.3.3, bincode@2.0.1, crossbeam-epoch@0.9.18, fxhash@0.2.1, memmap2@0.9.10, paste@1.0.15, proc-macro-error2@2.0.1 (CWE-1395)known CVE · -12 pts
⚠ML09Output Integrityhigh
Middleware tampering with model outputs in transit.
Gateway enforces TLS + response integrity; static check flags output-rewriting code.
•Suspicious code patterns — pipe-to-shell install · qdrant-qdrant-db8fa43/.github/workflows/coverage.yml (CWE-494)risk surface
•Suspicious code patterns — destructive rm -rf / · qdrant-qdrant-db8fa43/Dockerfile (CWE-78)risk surface
•Suspicious code patterns — OS command execution · qdrant-qdrant-db8fa43/lib/edge/publish/amalgamate.py (CWE-78)risk surface
§ML01Input Manipulation (Adversarial)Governance
Models vulnerable to adversarial perturbations.
Requires runtime robustness evaluation; addressed via publisher robustness attestation.
§ML03Model InversionGovernance
Training data reconstructable from a model's outputs.
Runtime/evaluation property; addressed via model-card data-provenance + DP attestation.
§ML04Membership InferenceGovernance
Determining whether a record was in the training set.
Runtime/evaluation property; addressed via overfitting disclosure + DP attestation.
§ML08Model SkewingGovernance
Models trained on skewed data producing biased output.
Requires fairness evaluation; addressed via model-card bias/limitations disclosure.
✓ML02Data PoisoningPassed
Poisoned training datasets with triggers or anomalous distributions.
Static check covers trigger phrasing, PII and label skew; full poisoning detection is runtime.
✓ML05Model TheftPassed
Unlicensed re-distribution / license-incompatible derivatives.
Static check verifies license declaration; extraction throttling is runtime.
✓ML07Transfer Learning AttackPassed
Backdoored base models / LoRA adapters propagating to derivatives.
Backdoor detection needs behavioral probing; static check covers unsafe serialization + provenance.
✓ML10Model Poisoning (Weights)Passed
Tampered model weight files; integrity must be verifiable.
Static check enforces safe formats + records a content hash for downstream verification.
Other findings (16) · hygiene / uncategorized
•Unrecognized file type — '.dockerignore' is not on the allowlist · qdrant-qdrant-db8fa43/.dockerignorerisk surface
•Unrecognized file type — '.gitattributes' is not on the allowlist · qdrant-qdrant-db8fa43/.gitattributesrisk surface
•Suspicious network references — suspicious TLD (1 URLs) · qdrant-qdrant-db8fa43/.github/actions/setup-protoc/action.yamlrisk surface
•Suspicious network references — raw IP URL (7 URLs) · qdrant-qdrant-db8fa43/.github/workflows/integration-tests.ymlrisk surface
•Unrecognized file type — '.gitignore' is not on the allowlist · qdrant-qdrant-db8fa43/.gitignorerisk surface
•Unrecognized file type — '.?' is not on the allowlist · qdrant-qdrant-db8fa43/Dockerfilerisk surface
•Suspicious network references — suspicious TLD (33 URLs) · qdrant-qdrant-db8fa43/docs/DEVELOPMENT.mdrisk surface
•Unrecognized file type — '.proto' is not on the allowlist · qdrant-qdrant-db8fa43/lib/api/src/grpc/proto/collections.protorisk surface
•Unrecognized file type — '.mmd' is not on the allowlist · qdrant-qdrant-db8fa43/lib/collection/docs/collection-struct.mmdrisk surface
•Unrecognized file type — '.pyi' is not on the allowlist · qdrant-qdrant-db8fa43/lib/edge/python/qdrant_edge.pyirisk surface
•Unrecognized file type — '.c' is not on the allowlist · qdrant-qdrant-db8fa43/lib/quantization/cpp/avx2.crisk surface
•Unrecognized file type — '.h' is not on the allowlist · qdrant-qdrant-db8fa43/lib/quantization/cpp/export_macro.hrisk surface
•Unrecognized file type — '.comp' is not on the allowlist · qdrant-qdrant-db8fa43/lib/segment/src/index/hnsw_index/gpu/shaders/bheap.comprisk surface
•Suspicious network references — raw IP URL (4 URLs) · qdrant-qdrant-db8fa43/lib/storage/src/content_manager/consensus_manager.rsrisk surface
•Unrecognized file type — '.desktop' is not on the allowlist · qdrant-qdrant-db8fa43/pkg/appimage/qdrant.desktoprisk surface
•Unrecognized file type — '.nix' is not on the allowlist · qdrant-qdrant-db8fa43/shell.nixrisk surface
✔ verified source · pinned qdrant-qdrant-db8fa43
Check against a policy

The same gate an agent runs before installing (POST /api/v1/trust/qdrant-vector-store/check). Click a policy:

Consume Qdrant programmatically. Authenticate with an API key or session — see Authorize an agent.

# Agents: CHECK BEFORE YOU INSTALL (no auth) — score, grade, level, capability manifest
curl https://ai-supply.store/api/v1/trust/qdrant-vector-store

# Gate against your org policy (returns { pass, violations })
curl -X POST https://ai-supply.store/api/v1/trust/qdrant-vector-store/check \
  -H "Content-Type: application/json" \
  -d '{"minGrade":"B","denyPermissions":["shell"],"denyUnknownEgress":true}'

# CLI
npx ai-supply add qdrant-vector-store

# REST (install → download)
curl -X POST https://ai-supply.store/api/v1/listings/qdrant-vector-store/install \
  -H "Authorization: Bearer $AIM_KEY"

# MCP tool
install_listing({ "slug": "qdrant-vector-store" })
OpenAPI spec →
vlatest
! Security: Review · 881mo ago

Curated mirror — latest upstream source. See the repository for tagged releases.

Sign in and install this listing to leave a review.

More from @ai-supply

View profile →
◉Agent
MetaGPT
Multi-agent framework that assigns GPT roles (PM, engineer, QA) to solve complex software tasks end-to-end.
↓ 1.0M
⇄Connector
vLLM
High-throughput, memory-efficient LLM inference engine with PagedAttention and continuous batching.
↓ 892k
⇄Connector
Meilisearch
Lightning-fast open-source search engine with typo-tolerance, semantic hybrid search, and sub-50ms response times.
↓ 811k
△Eval
Weights & Biases (wandb)
ML experiment tracking and visualization — log metrics, hyperparameters, models, and media in real time.
↓ 784k
ai-supply.store

Free, security-vetted AI capabilities — skills, MCPs, plugins, agents, datasets and more, each graded and freshness-tracked, and built for humans and agents alike.

api · v3.1status · all green
Contact
support@ai-supply.storesecurity@ai-supply.store
Catalog
  • Discover
  • Categories
  • Leaderboards
  • Benchmarks
  • Security
  • Scan a repo
Community
  • Community
  • FAQ
For agents
  • Quickstart (60s)
  • Authorize an agent
  • Agent API
  • OpenAPI spec
For builders
  • Publish
  • Dashboard
Account
  • Create account
  • Sign in
  • Settings
Legal
  • Terms
  • Publisher Agreement
  • Acceptable Use
  • Privacy