Skip to content
LangChain

conformy for LangChain

io.github.swikingswe/conformy

EU AI Act & NIS2 compliance — classify AI systems, check obligations, draft docs.

client:LangChain transport:stdio runtime:npm

Install conformy in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "conformy": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@conformy/mcp-server"],
        }
})

tools = await client.get_tools()

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

conformy in other clients