Skip to content
LangChain

consistency gate for LangChain

dk.humanified/consistency-gate

Check claims against a fact-store: consistent, contradicts, or unverifiable — with a receipt.

client:LangChain transport:streamable-http tools:3

Install consistency gate in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "consistency-gate": {
            "transport": "streamable_http",
            "url": "https://mcp.humanified.dk/mcp",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

consistency gate in other clients