Skip to content
LangChain

Abnormal Security for LangChain

io.github.wyre-technology/abnormal-mcp

MCP server for Abnormal Security — AI-powered email threat detection, cases, and remediation.

client:LangChain transport:stdio runtime:oci

Install Abnormal Security in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "abnormal-mcp": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "ghcr.io/wyre-technology/abnormal-mcp:v1.2.5"],
        }
})

tools = await client.get_tools()

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

Abnormal Security in other clients