Skip to content
LangChain

ai test process mcp for LangChain

io.github.hashi-kazu/ai-test-process-mcp

AI-assisted MCP server for JSTQB-based test planning, design, review, and analysis.

client:LangChain transport:stdio runtime:npm

Install ai test process mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

ai test process mcp in other clients