Skip to content
LangChain

Cisco Modeling Labs CML for LangChain

io.github.xorrkaz/cml-mcp

An MCP server that provides access to common Cisco Modeling Labs (CML) operations.

client:LangChain transport:stdio runtime:pypi

Install Cisco Modeling Labs CML in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Cisco Modeling Labs CML in other clients