Skip to content
LangChain

Car Repair Cost Estimator for LangChain

com.carrepaircostestimator/cost-estimator

Car repair cost estimates by make, model and repair type. 31 cost guides, VIN decode. Free.

client:LangChain transport:streamable-http tools:7

Install Car Repair Cost Estimator in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "cost-estimator": {
            "transport": "streamable_http",
            "url": "https://carrepaircostestimator.com/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

Car Repair Cost Estimator in other clients