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 服务器
Mcp Knowledge Graph
shanehollomanMCP server enabling persistent memory for Claude through a local knowledge graph - fork focused on local development
Context7 MCP - Up-to-date Docs For Any Cursor Prompt
upstashContext7 Platform -- Up-to-date code documentation for LLMs and AI code editors
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.
Notion MCP Integration
danhilseA simple MCP integration that allows Claude to read and manage a personal Notion todo list
RAG Documentation MCP Server
hannesrudolphAn MCP server implementation that provides tools for retrieving and processing documentation through vector search, enabling AI assistants to augment their responses with relevant documentation context.
评论