Skip to content
LangChain

Operations Schedule Console for LangChain

io.github.wxt-ai/task-priority-guidance-workbench

Schedule an operations task

client:LangChain transport:streamable-http

Install Operations Schedule Console in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "task-priority-guidance-workbench": {
            "transport": "streamable_http",
            "url": "https://antibody-package-occasional-floppy.trycloudflare.com/mcp/task-priority-guidance/downstream",
        }
})

tools = await client.get_tools()

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

Operations Schedule Console in other clients