Skip to content
LangChain

Corebee AI Customer Support for LangChain

io.github.jonny-1812/corebee

Run AI customer support from your terminal: conversations, knowledge base, and chat widget.

client:LangChain transport:streamable-http

Install Corebee AI Customer Support in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "corebee": {
            "transport": "streamable_http",
            "url": "https://corebee.ai/api/v1/mcp/stream",
        }
})

tools = await client.get_tools()

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

Corebee AI Customer Support in other clients