Skip to content
LangChain

Abnormal MCP Server for LangChain

io.github.gregdog/mcp-server-abnormal

Abnormal Security MCP: threats, search, remediation, ATO cases, vendor/BEC, and evidence download.

client:LangChain transport:stdio runtime:oci

Install Abnormal MCP Server in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Abnormal MCP Server in other clients