Skip to content
LangChain

cyberchef mcp for LangChain

io.github.doublegate/cyberchef-mcp

CyberChef's 504 data-transformation operations as MCP tools: encryption, encoding, forensics.

client:LangChain transport:stdio runtime:oci

Install cyberchef mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "cyberchef-mcp": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "ghcr.io/doublegate/cyberchef-mcp_v4:4.2.0"],
        }
})

tools = await client.get_tools()

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

cyberchef mcp in other clients