Skip to content
LangChain

Nuzo Memory for LangChain

io.github.fabionfsc/nuzo-memory

Local-first, auditable memory for MCP-compatible AI agents with explicit writes and SQLite storage.

client:LangChain transport:stdio runtime:npm

Install Nuzo Memory in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "nuzo-memory": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@nuzo/memory-mcp"],
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

Nuzo Memory in other clients