# Qdrant

> Qdrant — vector similarity search engine. Payload filtering, quantized indexing, multi-tenant, and horizontal scaling. REST and gRPC API. Docker-native deployment for production RAG and recommendation.

- Skill: `mkurman/qdrant` (Agent Skill)
- Install (CLI): `npx skillmds@latest add mkurman/qdrant`
- Raw SKILL.md: https://api.skillmd.com/api/skills/mkurman/qdrant/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- Author: mkurman (https://skillmd.com/u/mkurman)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/mkurman/qdrant

---

## Overview

Qdrant is a high-performance vector similarity search engine supporting dense and sparse vectors, payload indexing and filtering, scalar/PQ quantization, multi-tenancy, and horizontal scaling via clustering. REST and gRPC APIs with async support.

## Installation

```bash
docker run -p 6333:6333 qdrant/qdrant
```

## Python Client

```python
from qdrant_client import QdrantClient, models
import numpy as np

client = QdrantClient("localhost", port=6333)
client.create_collection("documents", vectors_config=models.VectorParams(
    size=384, distance=models.Distance.COSINE))

client.upsert("documents", points=[
    models.PointStruct(id=1, vector=np.random.rand(384).tolist(), payload={"text": "Paris is capital of France"}),
    models.PointStruct(id=2, vector=np.random.rand(384).tolist(), payload={"text": "Berlin is capital of Germany"}),
])

results = client.search("documents", query_vector=np.random.rand(384).tolist(), limit=5)
for hit in results:
    print(hit.payload["text"], hit.score)
```

## References
- [Qdrant docs](https://qdrant.tech/documentation/)
- [Qdrant GitHub](https://github.com/qdrant/qdrant)
