Stores and retrieves semantic memories in Qdrant using configurable embeddings, collections, and local or remote database connections.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag โ we're steadily working through the catalog.
๐ก Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by MCP Server Qdrant.
informationCallable MCP tool function
metadataCallable MCP tool function
collection_nameCallable MCP tool function
queryCallable MCP tool function
The qdrant/mcp-server-qdrant MCP server provides an MCP interface to Qdrant, a vector search engine. Its documented purpose is to maintain and retrieve memories using a semantic memory layer over a Qdrant database. Information is converted into vectors with an embedding model and stored in a named collection, where it can later be searched with a text query.
The server can work with a Qdrant instance reachable through a URL or with a local Qdrant database path. It can also create the configured collection automatically when that collection does not already exist.
A client sends information to the storage tool, optionally including JSON metadata and a collection name. The server embeds the information and writes it to Qdrant. A separate search tool accepts a query and collection name, then returns matching stored information as separate messages.
The default embedding provider is FastEmbed, and the default model is sentence-transformers/all-MiniLM-L6-v2. FastEmbed is currently the only supported embedding provider. Search returns up to 10 results by default, with the limit controlled through configuration.
The qdrant/mcp-server-qdrant MCP server supports standard input/output transport by default. It also supports Server-Sent Events and streamable HTTP, which can be selected with the --transport option for clients connecting remotely.
Run the server with uvx mcp-server-qdrant, or build and run the provided Dockerfile. A Qdrant URL and, when required by that deployment, an API key can be supplied through environment variables. Local mode instead uses QDRANT_LOCAL_PATH; the URL and local path must not be configured together.
COLLECTION_NAME sets the default collection. If no default is configured, storage and search requests must provide a collection name. EMBEDDING_MODEL changes the FastEmbed model, while QDRANT_READ_ONLY=true disables the storage tool.
For SSE or streamable HTTP, use --transport sse or the corresponding transport value and configure the server port with FASTMCP_SERVER_PORT. Container deployments should set FASTMCP_SERVER_HOST=0.0.0.0 so the process listens on the container's network interfaces.
The documented MCP operations cover:
The README names the primary operations qdrant-store and qdrant-find; the listing exposes the related inputs as information, metadata, collection_name, and query.
Only FastEmbed is supported as the embedding provider at present. The server requires either a Qdrant URL or a local Qdrant database path, and those two connection modes cannot be used simultaneously. API-key authentication is relevant to Qdrant deployments that require it, but local Qdrant mode can be configured without a Qdrant URL or API key.
The default transport is intended for local MCP clients, while SSE and streamable HTTP are available for remote clients. The documented desktop-client setup specifically covers Claude Desktop.
Factual signals from GitHub, npm, and our automated checks โ not a rating.
No reviews yet โ be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/qdrant-mcp-server-qdrant)<a href="https://allmcps.com/mcp/qdrant-mcp-server-qdrant"><img src="https://allmcps.com/api/badge/qdrant-mcp-server-qdrant?style=directory" alt="MCP Server Qdrant on AllMCPs" /></a>