Skip to content

MCP server

Qdrant MCP server

Qdrant's official MCP server gives AI a semantic memory: store information in a Qdrant collection and find it again by meaning.

At a glance

Maintained by
Qdrant
Tools exposed
2 listed below
Reviewed
September 24, 2026

Why it matters

What it does and why it matters

Qdrant is a vector database used for semantic search and retrieval. Its official MCP server is deliberately simple: one tool stores information, another finds it by meaning. Together they give an assistant a searchable memory, such as notes, snippets or knowledge it should be able to recall later.

For teams building knowledge assistants, it is a quick way to let an assistant both add to and search a shared knowledge store.

Storing can be turned off with a read-only setting, which we use when the collection is curated by people and the assistant should only search it. The server embeds text with a configurable model, so choose one that matches the rest of your search setup.

Its simplicity is the point. Two tools are easy to understand, easy to explain to a team and easy to secure. That makes Qdrant a good first step before building a full retrieval pipeline with chunking, reranking and access rules for each document. When the prototype proves useful, we move loading into a separate, reviewed process and keep the assistant on search only.

Use cases

Best business use cases

Team memory

Store decisions and answers for later recall.

Semantic search

Search a curated collection by meaning.

Code snippets

Keep reusable snippets that developers can find by description.

Support answers

Store approved answers for support assistants.

RAG prototypes

Prototype retrieval before building a full pipeline.

Tools

Available tools

Tool names as published by the maintainer at review time. Versions change, so check the repository for the current list.

Read and write: Read and write (store and find); QDRANT_READ_ONLY disables storing.

  • qdrant-store

    Stores information and metadata in a Qdrant collection.

  • qdrant-find

    Finds relevant stored information by semantic search.

Workflows

Example workflows

Build a support answer library

  1. 1

    Support leads store approved answers through the assistant.

  2. 2

    Each answer is embedded and saved.

  3. 3

    Agents later ask a customer question.

  4. 4

    The assistant finds the closest approved answers.

  5. 5

    The agent adapts and sends the reply.

Search-only assistant

  1. 1

    Load a curated collection separately.

  2. 2

    Start the server in read-only mode.

  3. 3

    Staff ask questions.

  4. 4

    The assistant searches the collection.

  5. 5

    It answers with the matching entries.

Prompts

Example prompts

  • “Remember this: our refund window for annual plans is 30 days.”

  • “Find what we stored about onboarding enterprise customers.”

  • “Search for snippets about retrying failed webhooks.”

Setup

Installation and configuration

Examples for Claude Desktop and Claude Code. Replace the placeholder values with your own keys, and store secrets outside version control.

Claude Desktop: claude_desktop_config.json

{
    "qdrant": {
        "command": "uvx",
        "args": [
            "mcp-server-qdrant"
        ],
        "env": {
            "QDRANT_URL": "https://xyz-example.eu-central.aws.cloud.qdrant.io:6333",
            "QDRANT_API_KEY": "your_api_key",
            "COLLECTION_NAME": "your-collection-name",
            "EMBEDDING_MODEL": "sentence-transformers/all-MiniLM-L6-v2"
        }
    }
}

Claude Code: terminal

claude mcp add code-search -e QDRANT_URL="http://localhost:6333" -e COLLECTION_NAME="code-repository" -- uvx mcp-server-qdrant
  • Local server: stdio (also sse and streamable-http). PyPI: mcp-server-qdrant (uvx mcp-server-qdrant).
  • Needs: QDRANT_URL (or QDRANT_LOCAL_PATH); QDRANT_API_KEY; COLLECTION_NAME; Optional: EMBEDDING_MODEL, QDRANT_READ_ONLY.

Security

Security considerations

  • Read-only mode

    Turn off storing for curated collections.

  • API key

    Use a key scoped to the needed collection.

  • What gets stored

    Decide what the assistant may store, and avoid personal data.

  • Review entries

    Review stored entries regularly.

Related servers

Servers that pair well with it

Chroma

Chroma's official MCP server lets AI create collections, add, query, update and delete documents in a Chroma vector database, local or cloud.

Pinecone

Pinecone's official developer MCP server lets AI search Pinecone docs, manage indexes, upsert records, search and rerank.

Memory

The MCP project's Memory reference server gives AI a local knowledge graph to store people, things and facts and recall them later.

Keep exploring

FAQ

Questions people ask us

Have a question that is not here? Ask us directly.

Start a project

Want this connected to your own systems? We build AI workflows with MCP.

Send a short brief. We reply with questions, a suggested plan and an estimate you can compare with other offers.

Your privacy choices

We use necessary storage to run this site. With your permission we also use Google Analytics to see which pages help people, and load maps from Google. You can change this at any time. Read the cookie policy.