Skip to content
LangChain

VeriGhost-Clarity for LangChain

io.github.evozim/verighost

Hallucination validator and factual grounding checker for LLM outputs.

client:LangChain transport:sse

Install VeriGhost-Clarity in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "verighost": {
            "transport": "streamable_http",
            "url": "https://verighost-mcp.vercel.app/api/mcp",
        }
})

tools = await client.get_tools()

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

VeriGhost-Clarity in other clients