Skip to content
LangChain

ComplyEdge TrustLint — offline EU AI Act compliance checks for LangChain

io.github.complyedge/complyedge

Offline TrustLint checks: EU AI Act Article 5, Article 50, GPAI, plus GDPR and HIPAA.

client:LangChain transport:stdio runtime:pypi

Install ComplyEdge TrustLint — offline EU AI Act compliance checks in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "complyedge": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["complyedge"],
        }
})

tools = await client.get_tools()

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

ComplyEdge TrustLint — offline EU AI Act compliance checks in other clients