Skip to content
LangChain

3TG Test Generation for LangChain

dev.3tg/mcp

3rd Generation Testing (3TG) — generate deterministic test suites from Markdown spec tables via MCP.

client:LangChain transport:streamable-http tools:10

Install 3TG Test Generation in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mcp": {
            "transport": "streamable_http",
            "url": "https://mcp.3tg.dev/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

3TG Test Generation in other clients