Skip to content
LangChain

echo ai for LangChain

so.echoai/echo-ai

List, configure, chat with, analyse and embed your Echo AI assistants.

client:LangChain transport:streamable-http

Install echo ai in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "echo-ai": {
            "transport": "streamable_http",
            "url": "https://auth.echoai.so/functions/v1/mcp",
        }
})

tools = await client.get_tools()

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

echo ai in other clients