Skip to content
LangChain

Delx Protocol — Agent Recovery & Continuity for LangChain

io.github.davidmosiah/delx-protocol

Free agent continuity MCP: resume after compaction, warm handoff, recover from failure. No key.

client:LangChain transport:streamable-http tools:30

Install Delx Protocol — Agent Recovery & Continuity in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "delx-protocol": {
            "transport": "streamable_http",
            "url": "https://api.delx.ai/v1/mcp/protocol?src=registry",
        }
})

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

All 30 tools →

Delx Protocol — Agent Recovery & Continuity in other clients