Skip to content
LangChain

Argus Testing — Autonomous QA MCP for LangChain

io.github.chriswu727/argus

Autonomous QA MCP for web and macOS that tests like a real engineer, finds bugs, and verifies them.

client:LangChain transport:stdio runtime:pypi

Install Argus Testing — Autonomous QA MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "argus": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["argus-testing"],
        }
})

tools = await client.get_tools()

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

Argus Testing — Autonomous QA MCP in other clients