Skip to content
LangChain

Testiny Test Management for LangChain

io.testiny/testiny-mcp

An MCP server that provides access to Testiny projects, test cases and test runs

client:LangChain transport:streamable-http

Install Testiny Test Management in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "testiny-mcp": {
            "transport": "streamable_http",
            "url": "https://app.testiny.io/api/v1/mcp-server",
        }
})

tools = await client.get_tools()

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

Testiny Test Management in other clients