Skip to content
LangChain

Hello Retail for LangChain

com.helloretail/hello-retail

Set up and tune ecommerce Search, Recommendations, Pages, Email, Product Agents and Analytics.

client:LangChain transport:streamable-http

Install Hello Retail in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "hello-retail": {
            "transport": "streamable_http",
            "url": "https://core.helloretail.com/mcp",
        }
})

tools = await client.get_tools()

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

Hello Retail in other clients