Skip to content
LangChain

lore for LangChain

io.github.jordanhindo/lore

Lightweight MCP for infinite agent memory. Any agent, any session, anytime.

client:LangChain transport:stdio runtime:npm

Install lore in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

lore in other clients