Yet another memory system for agents. This one with a coding project focus. My hobby project for learning TypeScript, Graph Databases and MCP. Vibe code 75% so bugs might ensue. Would love some userfeedback and feel free to pitch in with the development.
Support both SSE and stdio and the servers are end-to-end tested. Cline and Cursor work with stdio atleast based on my testing.
Stack:
TypeScript
KuzuDB
Model-Context-Protocol support (no official SDK yet)
Server Config
{
"mcpServers": {
"KuzuMemo-MCP": {
"command": "npx",
"args": [
"-y",
"ts-node",
"/Users/<absolute_path>/kuzumem-mcp/src/mcp-stdio-server.ts"
],
"env": {
"PORT": "3000",
"HOST": "localhost",
"DB_FILENAME": "memory-bank.kuzu",
"HTTP_STREAM_PORT": "3001",
"HTTP_STREAM_PROJECT_ROOT": "/"
},
"protocol": "stdio"
}
}
}