Skip to content
LangChain

Agent Experience Network Live Preflight for LangChain

io.github.solargptnz-dev/agent-experience-network

Check public MCP reachability, protocol handshake, auth and tool schemas before connecting.

client:LangChain transport:streamable-http

Install Agent Experience Network Live Preflight in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "agent-experience-network": {
            "transport": "streamable_http",
            "url": "https://agent-experience-network.onrender.com/mcp",
        }
})

tools = await client.get_tools()

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

Agent Experience Network Live Preflight in other clients