Abnormal Security for LangChain
io.github.wyre-ai/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-ai/abnormal-mcp:v1.2.6"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs