Skip to content
LangChain

patch tuesday for LangChain

io.github.jonnybottles/patch-tuesday

Query Microsoft Patch Tuesday security updates (MSRC) with EPSS and CISA KEV enrichment

client:LangChain transport:streamable-http runtime:pypi tools:1

Install patch tuesday in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "patch-tuesday": {
            "transport": "streamable_http",
            "url": "https://patch-tuesday-mcp.agreeabledesert-d0b8e491.eastus2.azurecontainerapps.io/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

patch tuesday in other clients