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.
连接
将此配置添加到 .claude/mcp.json
传输方式:
{
"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>"
}
}
}
}工具 (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)"
}
}
}资源
此服务器未提供任何资源。
提示词
此服务器未提供任何提示词。
服务器信息
- 许可证
- Apache-2.0
- 版本
- 0.8.1
- 星标
- 1,400
- 最后更新
- 2026年5月20日