Skip to content
LangChain

Cathedral — Persistent Memory for AI Agents for LangChain

io.github.ailife1/cathedral-mcp

Persistent memory and drift detection for AI agents across session restarts.

client:LangChain transport:streamable-http runtime:pypi

Install Cathedral — Persistent Memory for AI Agents in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "cathedral-mcp": {
            "transport": "streamable_http",
            "url": "https://cathedral-ai.com/mcp",
        }
})

tools = await client.get_tools()

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

Cathedral — Persistent Memory for AI Agents in other clients