Skip to content
LangChain

Lucius MCP for LangChain

io.github.ivanostanin/lucius-mcp

MCP server for managing Allure TestOps tests, launches, plans, defects, and metadata.

client:LangChain transport:stdio runtime:pypi

Install Lucius MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Lucius MCP in other clients