Skip to main content
The Qdrant resource mounts a Qdrant collection as a filesystem: group-by payload fields become folders, points become files, and semantic search is the search command. See Qdrant Resource for the full layout and command list.

Dependencies

The qdrant extra installs qdrant-client[fastembed]. fastembed powers local, in-process query embedding for the search command; filesystem browsing (ls/cat/find/grep) needs only the base client.

Connection

The same QdrantConfig works for self-hosted and cloud.

Self-hosted

Qdrant Cloud

Use url plus an api_key:

Search setup

The search command embeds the query and runs Qdrant vector search. The collection must already store vectors produced by the same model (embedding_model, default sentence-transformers/all-MiniLM-L6-v2). Query embedding happens one of two ways:
  • Local (default): fastembed embeds the query in process.
  • Server-side: set cloud_inference=True to have an inference-enabled Qdrant Cloud cluster embed the query. The query text is sent to the server instead of being embedded locally.

Config reference

The mount is read-only. See Qdrant Resource for the filesystem layout and supported commands.