Skip to main content
The Qdrant node adds Qdrant operations to your workflows. Add it on the canvas or ask the AI builder for it by name, then pick an operation and fill in its fields.
You can wire the Qdrant node into an AI agent as a tool provider: the agent calls the operations you allow. See Agent tools.

Credentials

Connect Qdrant under Credentials in the node settings. See Connecting credentials for the general flow. Enter the values manually when creating the credential. Get your credentials here.

Operations

Collection

OperationIDDescription
Create Collectioncreate_collectionCreate a new collection.
Delete Collectiondelete_collectionDelete a collection and all its points permanently.
Get Collection Infoget_collectionGet detailed info and stats for a single collection.
List Collectionslist_collectionsList all collections.
Update Collectionupdate_collectionUpdate collection parameters (optimizers, HNSW, quantization).

Index

OperationIDDescription
Create Payload Indexcreate_payload_indexCreate a payload field index to speed up filtered searches.
Delete Payload Indexdelete_payload_indexDelete a payload field index.

Payload

OperationIDDescription
Clear Payloadclear_payloadRemove all payload from points selected by IDs or filter.
Delete Payload Keysdelete_payloadDelete specific payload keys from points.
Set Payloadset_payloadSet (merge) payload fields on points selected by IDs or filter.

Points

OperationIDDescription
Count PointscountCount points in a collection, with optional filter.
Delete PointsdeleteDelete points by ID or by filter.
Query / SearchqueryFind the most similar points to a query vector (similarity search).
Recommend PointsrecommendFind points similar to positive examples and dissimilar from negative examples.
Retrieve PointsretrieveRetrieve points by their IDs.
Scroll PointsscrollScroll through all points in a collection with optional filter and cursor-based pagination.
Upload & Index Documentupload_and_indexUpload a document file, chunk + embed it, and upsert the points.
Upsert PointsupsertInsert or overwrite points in a collection.