Skip to content
LangChain

Agent Reputation for LangChain

io.github.samytouri/agent-hub

Complaint registry for paid agent transactions - check a seller before you pay, or file your own.

client:LangChain transport:streamable-http tools:14

Install Agent Reputation in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "agent-hub": {
            "transport": "streamable_http",
            "url": "https://agentreputation.dev/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

Agent Reputation in other clients