Skip to content
LangChain

CarChat Inventory for LangChain

io.carchat/inventory

Search live US dealership inventory, get market prices, and send buyer inquiries. Free, no API key.

client:LangChain transport:streamable-http tools:6

Install CarChat Inventory in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "inventory": {
            "transport": "streamable_http",
            "url": "https://carchat.io/mcp",
        }
})

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

CarChat Inventory in other clients