Skip to content
LangChain

mcp judge for LangChain

io.github.giachi85it-ux/mcp-judge

Scores any MCP server before you trust it: free quick check, full paid report, 2-5 way compare.

client:LangChain transport:streamable-http

Install mcp judge in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mcp-judge": {
            "transport": "streamable_http",
            "url": "https://mcp-judge.onrender.com/mcp",
        }
})

tools = await client.get_tools()

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

mcp judge in other clients