Skip to content
LangChain

superlocalmemory for LangChain

io.github.varun369/superlocalmemory

Local-first AI memory with knowledge graphs and hybrid search. 17+ AI tools via MCP. Free.

client:LangChain transport:stdio runtime:npm

Install superlocalmemory in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "superlocalmemory": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "superlocalmemory"],
        }
})

tools = await client.get_tools()

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

superlocalmemory in other clients