Skip to content
LangChain

neural memory for LangChain

io.github.nhadaututtheky/neural-memory

Persistent memory for AI agents — 55 MCP tools, spreading activation recall.

client:LangChain transport:stdio runtime:npm

Install neural memory in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

neural memory in other clients