Skip to content
LangChain

Microsoft Sentinel Data Exploration for LangChain

com.microsoft/sentinel-data-exploration

Find relevant security data from Sentinel data lake for building effective agents. More:aka.ms/s/de

client:LangChain transport:streamable-http

Install Microsoft Sentinel Data Exploration in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "sentinel-data-exploration": {
            "transport": "streamable_http",
            "url": "https://sentinel.microsoft.com/mcp/data-exploration",
        }
})

tools = await client.get_tools()

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

Microsoft Sentinel Data Exploration in other clients