Skip to content
LangChain

Blackpoint Cyber for LangChain

io.github.wyre-technology/blackpoint-mcp

MCP server for Blackpoint Cyber MDR — alerts, threats, and operations.

client:LangChain transport:stdio runtime:oci

Install Blackpoint Cyber in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Blackpoint Cyber in other clients