Skip to content
LangChain

AgentTrust — AI Agent Trust, Reliability & Reputation Checks for LangChain

io.github.agenttrust-ai/agenttrust

Trust infrastructure for AI agents: check reliability, verification, and trustDecision by URL.

client:LangChain transport:streamable-http tools:5

Install AgentTrust — AI Agent Trust, Reliability & Reputation Checks in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "agenttrust": {
            "transport": "streamable_http",
            "url": "https://getagenttrust.com/api/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

AgentTrust — AI Agent Trust, Reliability & Reputation Checks in other clients