Skip to content
LangChain

memoric for LangChain

io.memoric/memoric

Provenance-first database for teams and agents: every value carries sources, rules and coverage.

client:LangChain transport:streamable-http

Install memoric in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "memoric": {
            "transport": "streamable_http",
            "url": "https://app.memoric.io/api/mcp",
        }
})

tools = await client.get_tools()

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

memoric in other clients