MCP Memory Server with Qdrant Persistence
@delorenj
关于 MCP Memory Server with Qdrant Persistence
MCP server providing a knowledge graph implementation with semantic search capabilities powered by Qdrant vector database
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"mcp-qdrant-memory": {
"command": "docker",
"args": [
"build",
"-t",
"mcp-qdrant-memory",
"."
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is MCP Memory Server with Qdrant Persistence?
This MCP server provides a knowledge graph implementation with semantic search capabilities powered by Qdrant vector database. It stores entities and relations in a graph structure, persists data both in a local JSON file and as embeddings in Qdrant, and uses OpenAI for generating semantic embeddings. It is designed for developers building AI assistants or applications that need persistent, semantically searchable memory.
How to use MCP Memory Server with Qdrant Persistence?
Install dependencies with npm install, then build with npm run build. Set the required environment variables (OPENAI_API_KEY, QDRANT_URL, QDRANT_API_KEY, QDRANT_COLLECTION_NAME) and add the server configuration to your MCP settings file under mcpServers. The server exposes tools for creating and querying the knowledge graph and searching semantically.
Key features of MCP Memory Server with Qdrant Persistence
- Graph-based knowledge representation with entities and relations
- File-based persistence via a memory.json file
- Semantic search using Qdrant vector database
- OpenAI embeddings for semantic similarity
- HTTPS support with reverse proxy compatibility
- Docker support for easy deployment
Use cases of MCP Memory Server with Qdrant Persistence
- Give an AI assistant a persistent, searchable memory of entities and their relationships
- Enable semantic search across stored knowledge concepts and observations
- Maintain a dynamic knowledge graph that synchronizes between local file storage and a vector database
FAQ from MCP Memory Server with Qdrant Persistence
What runtime dependencies are required?
Node.js, an OpenAI API key, and a running Qdrant server with a configured collection are required.
Where does the data live?
Data is stored both in a local file (memory.json) holding the full graph structure and in Qdrant as semantic embeddings for similarity search.
What tools does the server expose?
The server provides tools for entity and relation management (create_entities, create_relations, add_observations, delete_entities, delete_observations, delete_relations, read_graph) and semantic search (search_similar).
How does synchronization between file storage and Qdrant work?
When entities or relations are modified, changes are written to memory.json, embeddings are generated via the OpenAI API, and the vectors are stored in Qdrant, keeping both systems consistent.
How is authentication and transport configured?
Authentication is handled via environment variables (OPENAI_API_KEY, QDRANT_API_KEY). The server supports HTTP and HTTPS connections to Qdrant and includes configuration for reverse proxies and custom SSL/TLS setups.
记忆与知识 分类下的更多 MCP 服务器
Solomd
zhitongblogA markdown editor — and the bridge to your LLM. Local-first, MIT, ~15 MB. Bundled MCP server lets Claude Code / Codex / Cursor drive your vault directly. 14 AI providers BYOK.
Rust Docs MCP Server
Govcraft🦀 Prevents outdated Rust code suggestions from AI assistants. This MCP server fetches current crate docs, uses embeddings/LLMs, and provides accurate context via a tool call.
Docs MCP Server
araboldGrounded Docs MCP Server: Open-Source Alternative to Context7, Nia, and Ref.Tools
Basic Memory
basicmachines-coAI conversations that actually remember. Never re-explain your project to your AI again. Join our Discord: https://discord.gg/tyvKNccgqN
Memory Bank MCP Server
alioshrA Model Context Protocol (MCP) server implementation for remote memory bank management, inspired by Cline Memory Bank.
评论