Memory
Memory
Knowledge graph-based persistent memory system that lets LLMs store and recall entities, relations, and observations across sessions.
Install
npx -y @modelcontextprotocol/server-memory
The Memory MCP server provides a knowledge graph-based persistent memory system. It allows an LLM to remember information about the user across conversations by storing entities, relations, and observations.
## Capabilities
- Create and update entities and relations in a knowledge graph
- Add and remove observations
- Search and retrieve stored nodes
- Persist memory between sessions
## Usage
```json
{
"mcpServers": {
"memory": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-memory"]
}
}
}
```