Graph Memory RAG MCP Server
@lecharles
关于 Graph Memory RAG MCP Server
A Model Context Protocol (MCP) server implementation for graph-based memory storage with RAG capabilities
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"graph-memory-rag-mcp-server": {
"command": "node",
"args": [
"app.js"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is Graph Memory RCP MCP Server?
Graph Memory RCP MCP Server is a Model Context Protocol (MCP) server that provides graph-based memory storage. It allows AI agents to store and retrieve information in a graph structure, maintaining context and relationships between pieces of information. It is intended for developers integrating graph memory into AI agent workflows.
How to use Graph Memory RCP MCP Server?
Install dependencies with npm install and start the server with node app.js. The server exposes tools for creating entities and relationships, querying entities and relationships by type, and deleting entities with cascading relationship cleanup.
Key features of Graph Memory RCP MCP Server
- In-memory graph database storage
- Entity creation and management
- Relationship creation between entities
- Query capabilities for entities and relationships
- Delete operations with cascading relationship cleanup
- MCP-compliant interface
Use cases of Graph Memory RCP MCP Server
- AI agents maintaining persistent context across conversations
- Storing and retrieving structured knowledge with entity-relationship links
- Managing dynamic memory graphs where nodes and edges can be added or removed
- Experimenting with graph-based memory in MCP‑enabled applications
FAQ from Graph Memory RCP MCP Server
What dependencies does Graph Memory RCP MCP Server require?
It requires @modelcontextprotocol/sdk: ^1.0.3 and zod: ^3.22.4.
How is data stored in Graph Memory RCP MCP Server?
Data is stored entirely in‑memory using two maps: one for entities and one for relationships. There is no persistent storage.
What operations can I perform with the server’s tools?
You can create entities (with name, type, and observations), create relationships between entities, query entities and relationships by type, and delete entities (which also removes their associated relationships).
Does Graph Memory RCP MCP Server use authentication or transport layers?
The README does not describe any authentication or transport configuration; it uses the standard MCP interface.
What are the limits of the in‑memory storage?
The README does not specify explicit limits. Since storage is in‑memory, capacity is bounded by available system memory and data is lost when the server stops.
记忆与知识 分类下的更多 MCP 服务器

Memory
modelcontextprotocolModel Context Protocol Servers
Obsidian MCP Server
cyanheadsRead, write, search, and surgically edit Obsidian vault notes, tags, and frontmatter via MCP. STDIO or Streamable HTTP.
mcp-local-rag
nkapila6"primitive" RAG-like web search model context protocol (MCP) server that runs locally. ✨ no APIs ✨
Context Portal MCP (ConPort)
GreatScottyMacContext Portal (ConPort): A memory bank MCP server building a project-specific knowledge graph to supercharge AI assistants. Enables powerful Retrieval Augmented Generation (RAG) for context-aware development in your IDE.
Notion MCP Integration
danhilseA simple MCP integration that allows Claude to read and manage a personal Notion todo list
评论