Better Qdrant MCP Server

# Better Qdrant MCP Server A Model Context Protocol (MCP) server for enhanced Qdrant vector database functionality. This server provides tools for

Local serverstdio

What is the Better Qdrant MCP server?

Better Qdrant MCP server exists for a simple reason — assistants are far more useful when they can act on Better Qdrant directly instead of describing what you should do. # Better Qdrant MCP Server A Model Context Protocol (MCP) server for enhanced Qdrant vector database functionality. This server provides tools for managing Qdrant collections, adding documents, and performing semantic searches. <a.

What you get

  • List Collections — View all available Qdrant collections
  • Add Documents — Process and add documents to a Qdrant collection with various embedding services
  • Search — Perform semantic searches across your vector database
  • Delete Collection — Remove collections from your Qdrant database

Setting it up

The server ships on npm as better-qdrant-mcp-server, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

What the assistant can call

Once Better Qdrant is connected, these are the calls the assistant has available:

  • Search — The Search tool exposed by this server

Configuration and credentials

You will need 8 environment variables: QDRANT_URL, QDRANT_API_KEY, DEFAULT_EMBEDDING_SERVICE, OPENAI_API_KEY, OPENAI_ENDPOINT, OPENROUTER_API_KEY, OPENROUTER_ENDPOINT, OLLAMA_ENDPOINT. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Node.js >= 18.0.0 - A running Qdrant server (local or remote) - API keys for the embedding services you want to use

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the better qdrant mcp server does with a few real requests.

Choosing this one

This sits in the AI and media services group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Better Qdrant's toolset — Search — is a fair guide to whether it matches your workflow. It is maintained by wrediam; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Better Qdrant's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
SearchThe Search tool exposed by this server.

How to install the Better Qdrant MCP server

{
  "mcpServers": {
    "better-qdrant": {
      "command": "npx",
      "args": ["better-qdrant-mcp-server"],
      "env": {
        "QDRANT_URL": "http://localhost:6333",
        "QDRANT_API_KEY": "your_api_key_if_needed",
        "DEFAULT_EMBEDDING_SERVICE": "ollama",
        "OPENAI_API_KEY": "your_openai_api_key",
        "OPENAI_ENDPOINT": "https://api.openai.com/v1",
        "OPENROUTER_API_KEY": "your_openrouter_api_key",
        "OPENROUTER_ENDPOINT": "https://api.openrouter.com/v1",
        "OLLAMA_ENDPOINT": "http://localhost:11434",
        "OLLAMA_MODEL": "nomic-embed-text"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Node.js >= 18.0.0 - A running Qdrant server (local or remote) - API keys for the embedding services you want to use
VariableDescriptionRequired
QDRANT_URLEndpoint or connection string the server talks to.Yes
QDRANT_API_KEYCredential the server authenticates with.Yes
DEFAULT_EMBEDDING_SERVICEConfiguration value read at startup.Optional
OPENAI_API_KEYCredential the server authenticates with.Yes
OPENAI_ENDPOINTConfiguration value read at startup.Optional
OPENROUTER_API_KEYCredential the server authenticates with.Yes
OPENROUTER_ENDPOINTConfiguration value read at startup.Optional
OLLAMA_ENDPOINTConfiguration value read at startup.Optional

Example prompts to try

  • Use Better Qdrant to Search.

Frequently asked questions

OpenAI, OpenRouter, Ollama (local, default endpoint http://localhost:11434), and FastEmbed (local models).