Memory
Memory
Section titled “Memory”Persistent key-value storage and knowledge graph for maintaining context across sessions.
Capabilities
Section titled “Capabilities”- Store entities - Save named entities with observations
- Create relations - Link entities together
- Query knowledge - Retrieve stored information
- Persistent storage - Data persists between sessions
Guidelines
Section titled “Guidelines”- Useful for remembering user preferences, project context
- Entities have names and lists of observations
- Relations connect entities (e.g., “project X uses technology Y”)
- Storage is local to the machine
Setup Guide
Section titled “Setup Guide”Configuration
Section titled “Configuration”Required config.json:
{ "name": "Memory", "slug": "memory", "enabled": true, "provider": "memory", "type": "mcp", "mcp": { "transport": "stdio", "command": "npx", "args": ["-y", "@modelcontextprotocol/server-memory"] }}Recommended Questions
Section titled “Recommended Questions”- What kind of information do you want to persist? (preferences, project notes, etc.)
- Should this be shared across workspaces or specific to one?
Permissions for Explore Mode
Section titled “Permissions for Explore Mode”{ "allowedMcpPatterns": [ { "pattern": "read", "comment": "Read stored entities" }, { "pattern": "search", "comment": "Search knowledge graph" }, { "pattern": "open", "comment": "Open knowledge graph nodes" } ]}No Authentication Required
Section titled “No Authentication Required”This is a local server - no API keys or OAuth needed.