Skip to content
LangChain

testa for LangChain

io.github.valewnrt/testa

Drive the iOS Simulator from an agent: read the screen, tap/type/swipe, replay flows in CI.

client:LangChain transport:stdio runtime:npm

Install testa in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "testa": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@valewnrt/testa-mcp"],
        }
})

tools = await client.get_tools()

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

testa in other clients