Skip to content
LangChain

ClauseKeeper Compliance Scanner for LangChain

io.github.mityda/clausekeeper

Scan website legal docs for missing or stale compliance clauses. Rule-based, no LLM.

client:LangChain transport:stdio runtime:pypi

Install ClauseKeeper Compliance Scanner in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

ClauseKeeper Compliance Scanner in other clients