Qdrant MCP Server
Databasestdiossehttp-streamingv0.8.1
Official MCP server for Qdrant vector search engine. Acts as a semantic memory layer enabling AI agents to store and retrieve information using vector similarity search. Supports storing text with metadata, semantic querying, configurable embedding models via FastEmbed, and both cloud-hosted and local Qdrant instances. Useful for building RAG pipelines, code search, knowledge bases, and long-term agent memory.
Connect
Add this configuration to .claude/mcp.json
Transport:
{
"mcpServers": {
"qdrant": {
"command": "uvx",
"args": [
"mcp-server-qdrant"
],
"env": {
"QDRANT_URL": "<YOUR_QDRANT_URL>",
"QDRANT_API_KEY": "<YOUR_QDRANT_API_KEY>",
"COLLECTION_NAME": "<YOUR_COLLECTION_NAME>",
"EMBEDDING_MODEL": "<YOUR_EMBEDDING_MODEL>"
}
}
}
}Tools (2)
qdrant-store
Store information in the Qdrant database with optional metadata.
{
"type": "object",
"required": [
"information"
],
"properties": {
"metadata": {
"type": "object",
"description": "Optional key-value metadata to attach to the stored entry"
},
"information": {
"type": "string",
"description": "Text information to store and index"
},
"collection_name": {
"type": "string",
"description": "Name of the collection to store in (required if no default set)"
}
}
}qdrant-find
Retrieve relevant information from Qdrant using semantic similarity search.
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Natural language query to search for"
},
"collection_name": {
"type": "string",
"description": "Name of the collection to search in (required if no default set)"
}
}
}Resources
This server does not expose any resources.
Prompts
This server does not expose any prompts.
Server Information
- Author
- Qdrant (@qdrant)
- License
- Apache-2.0
- Version
- 0.8.1
- Stars
- 1,400
- Last Updated
- May 20, 2026