QueueSim for LangChain
com.queuesim/public
Run M/M/c queue simulations and four scenarios (call center, ER, coffee shop, single server).
client:LangChain
transport:streamable-http
tools:11
Install QueueSim in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"public": {
"transport": "streamable_http",
"url": "https://queuesim.com/mcp/v1",
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs