Skip to content
LangChain

LexLint: compliance lint for AI, scraping, and privacy law for LangChain

org.lexlint/lexlint

Compliance lint for AI, scraping, and privacy law. Cited findings in 200 or more jurisdictions.

client:LangChain transport:streamable-http

Install LexLint: compliance lint for AI, scraping, and privacy law in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "lexlint": {
            "transport": "streamable_http",
            "url": "https://mcp.lexlint.io/mcp",
        }
})

tools = await client.get_tools()

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

LexLint: compliance lint for AI, scraping, and privacy law in other clients