Skip to content
LangChain

llmtest mcp for LangChain

io.github.tjacquesson/llmtest-mcp

Benchmark AI models on real prompts. Find cheaper, faster alternatives across 340+ models.

client:LangChain transport:stdio runtime:npm

Install llmtest mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "llmtest-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "llmtest-mcp"],
        }
})

tools = await client.get_tools()

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

llmtest mcp in other clients