qdrant-mcp-server
Verified Safeby mhalder
Overview
This server provides semantic search capabilities using Qdrant vector database, primarily focused on code vectorization for intelligent codebase indexing and semantic code search, as well as general document search.
Installation
node build/index.jsEnvironment Variables
- OPENAI_API_KEY
- COHERE_API_KEY
- VOYAGE_API_KEY
- QDRANT_API_KEY
Security Notes
The server includes path validation (`validatePath`) to prevent directory traversal attacks. For HTTP transport, the README explicitly warns users to run it behind a reverse proxy with HTTPS, implement authentication/authorization at the proxy level, use firewalls, and not expose it directly to the public internet without protection. API keys for cloud embedding providers and Qdrant are sourced from environment variables. The `MetadataExtractor` module also includes basic secret detection logic within code chunks, enhancing overall security awareness.
Similar Servers
codegraph-rust
Transforms codebases into a semantically searchable knowledge graph, enabling AI agents to reason about code relationships, architecture, and impact rather than just performing text-based searches.
qdrant-loader
A Model Context Protocol (MCP) server that provides advanced Retrieval-Augmented Generation (RAG) capabilities to AI development tools by bridging a QDrant knowledge base for intelligent, context-aware search.
claude-context-enhanced
Provides semantic code search capabilities to AI coding assistants (like Claude Code) by indexing entire codebases into a vector database for deep contextual understanding, enhancing AI agents with relevant code context.
mcp
A framework for building and deploying self-contained, searchable Model Context Protocol (MCP) servers for technical documentation, leveraging hybrid semantic and keyword search.