mcp-servers
Verified Safeby Xyber-Labs
Overview
Provides an MCP server for Qdrant vector database integration, enabling AI agents to perform semantic search, store documents, and manage collections with advanced multi-tenant filtering capabilities.
Installation
docker run --rm -it -p 8000:8000 --env-file .env mcp-server-qdrantEnvironment Variables
- QDRANT_HOST
- QDRANT_PORT
- QDRANT_API_KEY
- EMBEDDING_PROVIDER
- EMBEDDING_MODEL
Security Notes
The server uses Pydantic for input validation, which is a good practice to prevent common injection vulnerabilities. API keys (for Qdrant and potentially x402 payments if enabled) are expected from environment variables, avoiding hardcoding. The `X402WrapperMiddleware` processes `X-PAYMENT` headers, including base64 decoding and JSON parsing; while this uses a dedicated `x402` library, improper handling of such headers can introduce risks, but no obvious critical flaw is apparent from the truncated code. Connection to Qdrant requires a secure setup (e.g., TLS, API key).
Similar Servers
awesome-mcp-servers
This repository serves as a curated list of Model Context Protocol (MCP) servers, frameworks, and utilities, providing a comprehensive directory for developers and AI practitioners.
mcp-servers
A curated collection of Model Context Protocol (MCP) server configurations to integrate various developer tools and services with AI agents.
tmcp
A server implementation for the Model Context Protocol (MCP) to enable LLMs to access external context and tools.
zeromcp
A minimal, pure Python Model Context Protocol (MCP) server for exposing tools, resources, and prompts via HTTP/SSE and Stdio transports.