MCP Server for Qdrant
@Jimmy974
关于 MCP Server for Qdrant
暂无概览
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"mcp-server-qdrant-jimmy974": {
"command": "python",
"args": [
"-m",
"mcp_server_qdrant.main"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is MCP Server for Qdrant?
MCP Server for Qdrant is a Machine Control Protocol (MCP) server that stores and retrieves text information from a Qdrant vector database. It enables semantic search by generating embeddings via FastEmbed and supports optional metadata attachment. This server is intended for developers building AI‑powered applications that need persistent, searchable memory backed by a vector database.
How to use MCP Server for Qdrant?
Install with pip install mcp-server-qdrant or clone the repository and run make setup. Configure required environment variables (QDRANT_URL, QDRANT_API_KEY, COLLECTION_NAME) in a .env file. Start the server with python -m mcp_server_qdrant.main or make run; alternatively use docker-compose up. Two MCP tools are exposed: qdrant-store (store text with optional metadata) and qdrant-find (semantic search by query).
Key features of MCP Server for Qdrant
- Store text information with optional JSON metadata
- Semantic search over stored information
- FastEmbed integration for text embeddings
- Environment-based configuration via .env file
- Docker support for containerized deployment
- Exposes MCP tools: qdrant-store and qdrant-find
Use cases of MCP Server for Qdrant
- Provide persistent memory for AI agents that need to recall past conversations or data
- Build a semantic knowledge base that can be queried by natural language
- Enable retrieval‑augmented generation (RAG) pipelines with a Qdrant backend
- Store and search notes or documents with metadata filters
- Prototype MCP‑based applications that require vector storage
FAQ from MCP Server for Qdrant
What is MCP Server for Qdrant and how is it different from using Qdrant directly?
It provides an MCP interface for Qdrant, allowing any MCP‑compatible client to store and search vectors without writing custom integration code. The server handles embedding generation and tool definition.
How do I install MCP Server for Qdrant?
Install via pip (pip install mcp-server-qdrant) or clone the repository and run make setup from the source directory.
What dependencies or runtime requirements are needed?
You need a running Qdrant instance and the required environment variables (QDRANT_URL, QDRANT_API_KEY, COLLECTION_NAME). The server uses FastEmbed for embeddings; the model can be configured via EMBEDDING_MODEL.
Where is data stored?
Data is stored in the Qdrant database configured through QDRANT_URL and QDRANT_API_KEY, inside the specified COLLECTION_NAME. No local file storage is used by the server itself.
Does MCP Server for Qdrant support Docker?
Yes. A docker-compose.yml is provided; run docker-compose up to start the server alongside a Qdrant instance if configured.
数据库 分类下的更多 MCP 服务器

PostgreSQL
modelcontextprotocolModel Context Protocol Servers
Elasticsearch/OpenSearch MCP Server
cr7258A Model Context Protocol (MCP) server implementation that provides Elasticsearch and OpenSearch interaction.
ClickHouse MCP Server
ClickHouseConnect ClickHouse to your AI assistants.
MongoDB MCP Server
mongodb-jsA Model Context Protocol server to connect to MongoDB databases and MongoDB Atlas Clusters.
评论