Skip to content
LangChain

test genie for LangChain

io.github.muse-code-space/test-genie

AI-powered app test automation for iOS, Android, Flutter, React Native, Web

client:LangChain transport:stdio runtime:npm

Install test genie in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

test genie in other clients