Skip to content
LangChain

batchwatch mcp for LangChain

io.github.batchwatch/batchwatch-mcp

Ask batchwatch whether to batch a job and get the real measured queue evidence, not a guess.

client:LangChain transport:stdio runtime:npm

Install batchwatch mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "batchwatch-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "batchwatch-mcp"],
        }
})

tools = await client.get_tools()

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

batchwatch mcp in other clients