Skip to content
LangChain

WhiteMagic — governed local memory for agent continuity for LangChain

io.github.lbailey94/whitemagic-mcp

Local-first memory and continuity for AI coding agents. No cloud backend; optional hosted lane.

client:LangChain transport:streamable-http runtime:npm tools:15

Install WhiteMagic — governed local memory for agent continuity in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "whitemagic-mcp": {
            "transport": "streamable_http",
            "url": "https://mcp.whitemagic.dev/mcp",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

WhiteMagic — governed local memory for agent continuity in other clients