Skip to content
LangChain

mcp verify claim for LangChain

io.github.sudo-ai-git/mcp-verify-claim

Force evidence-gated, tiered claim reporting (FACT/INFERENCE/SPECULATION). No-LLM.

client:LangChain transport:stdio runtime:pypi

Install mcp verify claim in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

mcp verify claim in other clients