kuzu-memory
Verified Safeby bobmatnyc
Overview
KuzuMemory provides a lightweight, embedded graph-based memory system for AI applications, specifically designed to integrate with AI coding agents (like Claude Code) via the Model Context Protocol (MCP) for contextual prompt enhancement and learning from interactions.
Installation
kuzu-memory mcpEnvironment Variables
- KUZU_MEMORY_DB
- KUZU_HOOK_LOG_DIR
- KUZU_MEMORY_CONFIG_PATH
- KUZU_MEMORY_LOG_LEVEL
Security Notes
The server primarily communicates over stdin/stdout, reducing external network attack surface. It utilizes `subprocess.run` in `KuzuCLIAdapter`, `MCPDiagnostics`, and `SelfUpdater` for CLI interactions and system-level operations. While input sanitization is used, `subprocess` calls are a common point for command injection if not handled perfectly. No direct `eval()` or obfuscation is observed. Hardcoded secrets are not evident; environment variables are used for sensitive paths.
Similar Servers
memory-graph
A graph-based MCP server that provides intelligent memory capabilities for Claude Code, enabling persistent knowledge tracking, relationship mapping, and contextual development assistance.
memory-mcp-server-go
A Model Context Protocol server providing knowledge graph management capabilities for LLMs to maintain memory across conversations.
context-sync
Context Sync provides AI systems with persistent, queryable memory across all development tools, sessions, and projects, allowing AI to remember codebase details, architectural decisions, and conversation history.
mcp-duckdb-memory-server
Manages and queries a knowledge graph using DuckDB as an embedded backend for AI agent memory, specifically designed for the Model Context Protocol.