Skip to content
LangChain

testkube mcp for LangChain

io.github.kubeshop/testkube-mcp

MCP server for Testkube - Manage test workflows, executions, and artifacts via AI assistants

client:LangChain transport:stdio runtime:oci

Install testkube mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "testkube-mcp": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "docker.io/kubeshop/mcp-server:2.9.1"],
        }
})

tools = await client.get_tools()

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

testkube mcp in other clients