Qdrant MCP Server
Qdrant's official MCP server, turning the Qdrant vector database into a semantic memory layer with two tools: store information and find it again by meaning instead of exact keywords.
Overview
Qdrant MCP Server turns Qdrant into a semantic memory layer for an agent: two tools, one to store a piece of information and one to retrieve it later by meaning, backed by real vector search instead of exact string matching.
How it works
qdrant-storesaves a piece of text plus optional metadata into a named collection, creating the collection automatically if it doesn't exist yet.qdrant-findsearches that collection with a natural-language query and returns the most semantically relevant stored entries, not just keyword matches.- By default it embeds text locally with FastEmbed
(
sentence-transformers/all-MiniLM-L6-v2), so it works against a local or self-hosted Qdrant instance without calling an external embedding API. - The tool descriptions for store and find are fully customizable via environment variables, which is how the same server gets repurposed as a semantic code-search tool for Cursor or Windsurf instead of a generic memory store.
QDRANT_READ_ONLY=truedisables the store tool entirely, useful when you want an agent to search an existing knowledge base without being able to add to it.
Examples
"Store this design decision in Qdrant so I can find it again later: we
chose event sourcing for the orders service because of the audit
requirement."
Installation
You need uv (recommended) or Python with pip, and a running Qdrant
instance (local via Docker, or Qdrant Cloud).
- Make sure you have a Qdrant instance reachable, for example:
docker run -p 6333:6333 qdrant/qdrant - Add the server to your MCP client's config, setting
QDRANT_URLandCOLLECTION_NAMEas shown in the sidebar. - Restart your client.
- Ask the agent to store a note, then ask it to find that note again by meaning, to confirm search works.
Related assets
Awesome MCP Servers
The largest community catalog of MCP servers: thousands of entries across dozens of categories (databases, browser automation, cloud, communication and more), tagged by language and scope.
Context7
Pulls updated, version-specific documentation and code examples straight from the source into your prompt, so agents stop citing outdated APIs or hallucinating ones that don't exist.
Playwright MCP
Microsoft's official MCP server for browser automation, driving Playwright through structured accessibility snapshots instead of screenshots, so any MCP client can browse, click and fill forms without a vision model.