Back to MCP Servers
Qdrant
Vector search engine acting as a semantic memory layer for storing and retrieving information using natural language
vector-databaseqdrantembeddingssearchai
By Qdrant
Installation
pip install mcp-server-qdrantConfiguration
{
"mcpServers": {
"qdrant": {
"command": "uvx",
"args": ["mcp-server-qdrant"],
"env": {
"QDRANT_URL": "http://localhost:6333",
"QDRANT_API_KEY": "your-qdrant-api-key",
"COLLECTION_NAME": "claude-memory"
}
}
}
}How to use
- Run the installation command above (if needed)
- Open your Claude Code settings file (~/.claude/settings.json)
- Add the configuration to the mcpServers section
- Restart Claude Code to apply changes