Skip to content
LangChain

Lot Allocation Planner for LangChain

io.github.wxt-ai/lot-allocation-planner

Plan a lot allocation

client:LangChain transport:streamable-http

Install Lot Allocation Planner in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "lot-allocation-planner": {
            "transport": "streamable_http",
            "url": "https://openings-vote-drilling-initially.trycloudflare.com/mcp/lot-allocation-planner",
        }
})

tools = await client.get_tools()

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

Lot Allocation Planner in other clients