qdrant-clients-sdk
About
This skill provides access to Qdrant's official client SDKs for Python, JavaScript/TypeScript, Rust, Go, .NET, and Java, enabling seamless integration with Qdrant vector databases. Use it when you need to quickly reference installation commands, documentation links, or supported language options for Qdrant deployments. It helps developers implement vector search functionality across their preferred programming language stack.
Quick Install
Claude Code
Recommendednpx skills add qdrant/skills -a claude-code/plugin add https://github.com/qdrant/skillsgit clone https://github.com/qdrant/skills.git ~/.claude/skills/qdrant-clients-sdkCopy and paste this command in Claude Code to install this skill
Documentation
Qdrant Clients SDK
Qdrant has the following officially supported client SDKs:
- Python — qdrant-client · Installation:
pip install qdrant-client[fastembed] - JavaScript / TypeScript — qdrant-js · Installation:
npm install @qdrant/js-client-rest - Rust — rust-client · Installation:
cargo add qdrant-client - Go — go-client · Installation:
go get github.com/qdrant/go-client - .NET — qdrant-dotnet · Installation:
dotnet add package Qdrant.Client - Java — java-client · Available on Maven Central: https://central.sonatype.com/artifact/io.qdrant/client
API Reference
All interaction with Qdrant can happen through the REST API or gRPC API. We recommend using the REST API if you are using Qdrant for the first time or working on a prototype.
- REST API - OpenAPI Reference - GitHub
- gRPC API - gRPC protobuf definitions
Code examples
To obtain code examples for a specific client and use case, you can send a search request to the library of curated code snippets for the Qdrant client.
curl -X GET "https://skills.qdrant.tech/snippets/search?language=python&query=how+to+upload+points"
Available languages: python, typescript, rust, java, go, csharp
Response example:
## Snippet 1
*qdrant-client* (vlatest) — https://skills.qdrant.tech/md/documentation/manage-data/points/
Uploads multiple vector-embedded points to a Qdrant collection using the Python qdrant_client (PointStruct) with id, payload (e.g., color), and a 3D-like vector for similarity search. It supports parallel uploads (parallel=4) and a retry policy (max_retries=3) for robust indexing. The operation is idempotent: re-uploading with the same id overwrites existing points; if ids aren’t provided, Qdrant auto-generates UUIDs.
client.upload_points(
collection_name="{collection_name}",
points=[
models.PointStruct(
id=1,
payload={
"color": "red",
},
vector=[0.9, 0.1, 0.1],
),
models.PointStruct(
id=2,
payload={
"color": "green",
},
vector=[0.1, 0.9, 0.1],
),
],
parallel=4,
max_retries=3,
)
Default response format is markdown, if snippet output is required in JSON format, you can add &format=json to the query string.
GitHub Repository
Related Skills
llamaguard
OtherLlamaGuard is Meta's 7-8B parameter model for moderating LLM inputs and outputs across six safety categories like violence and hate speech. It offers 94-95% accuracy and can be deployed using vLLM, Hugging Face, or Amazon SageMaker. Use this skill to easily integrate content filtering and safety guardrails into your AI applications.
cost-optimization
OtherThis Claude Skill helps developers optimize cloud costs through resource rightsizing, tagging strategies, and spending analysis. It provides a framework for reducing cloud expenses and implementing cost governance across AWS, Azure, and GCP. Use it when you need to analyze infrastructure costs, right-size resources, or meet budget constraints.
quantizing-models-bitsandbytes
OtherThis skill quantizes LLMs to 8-bit or 4-bit precision using bitsandbytes, achieving 50-75% memory reduction with minimal accuracy loss. It's ideal for running larger models on limited GPU memory or accelerating inference, supporting formats like INT8, NF4, and FP4. The skill integrates with HuggingFace Transformers and enables QLoRA training and 8-bit optimizers.
dispatching-parallel-agents
OtherThis Claude Skill dispatches multiple agents to investigate and fix 3+ independent problems concurrently. It is designed for scenarios involving unrelated failures that can be resolved without shared state or dependencies. The core capability is parallel problem-solving, assigning one agent per independent problem domain to maximize efficiency.
