cml-mcp-server
MCP server for Cisco Modeling Labs (CML) that enables building, managing, and running network labs through MCP tools, wrapping the CML Python SDK for lab/topology CRUD, node/link management, and configuration.
README
cml-mcp-server
An MCP (Model Context Protocol) server for Cisco Modeling Labs (CML) v2.10.
It wraps Cisco's official virl2_client Python SDK to expose lab/topology
CRUD, node/link management, node configuration, and a catalog of ready-made
example network architectures as MCP tools - so an MCP client (Claude Code,
Claude Desktop, etc.) can build and run network labs for testing designs and
configs.
Setup
cd cml-mcp-server
python3 -m venv .venv
source .venv/bin/activate
pip install -e .
cp cml-config.example.toml cml-config.toml # then fill in host / username / password
chmod 600 cml-config.toml
Credentials: config file vs. env vars
Connection settings can come from either a TOML config file or environment variables; env vars win if both are present. The config file is the recommended approach since it keeps credentials out of shell history and process-list-visible env, and out of MCP client config JSON.
cml-config.toml (project root) - searched first - or
~/.config/cml-mcp-server/config.toml, or an explicit path via
CML_CONFIG_PATH:
[cml]
host = "cml.example.com"
username = "api-user"
password = "change-me"
# verify_ssl = false
Equivalent env vars: CML_HOST, CML_USERNAME, CML_PASSWORD,
CML_VERIFY_SSL. CML_VERIFY_SSL accepts true/false or a path to a CA
bundle; it defaults to false since most CML controllers run with a
self-signed certificate.
Running
source .venv/bin/activate
cml-mcp-server
This starts the server on stdio, ready to be attached to an MCP client.
Claude Code / Claude Desktop config
{
"mcpServers": {
"cisco-cml": {
"command": "/absolute/path/to/cml-mcp-server/.venv/bin/cml-mcp-server"
}
}
}
Or point at an explicit config file / use env vars instead:
{
"mcpServers": {
"cisco-cml": {
"command": "/absolute/path/to/cml-mcp-server/.venv/bin/cml-mcp-server",
"env": {
"CML_CONFIG_PATH": "/absolute/path/to/cml-config.toml"
}
}
}
}
Tools
Labs
list_labs,get_lab_topologycreate_lab,delete_labstart_lab,stop_lab,wipe_lab
Platform catalog
list_node_definitions- available platform types (iosv, iosvl2, csr1000v, nxosv, asav, alpine, unmanaged_switch, ...), depends on which reference images are imported into your CML controller
Nodes
add_node,remove_nodestart_node,stop_nodeget_node_config,set_node_config(day-0 startup config)extract_node_config(pull the running config off a booted node)get_node_console_log
Links
add_link,remove_link- by default connects the next free interface on each node; interface labels can be given explicitly
Bulk topology building
-
build_topology- create a whole lab (nodes + links + configs) in one call from a node/link spec -
list_example_topologies,get_example_topology,deploy_example_topology- a small catalog of ready-made architectures:two_router_ospf- single-area OSPF adjacencybgp_two_as_peering- eBGP between two ASesthree_tier_campus- core/distribution/access skeletonleaf_spine_datacenter- 2-spine/2-leaf full-mesh underlayfirewall_dmz- IOS zone-based firewall with inside/outside/DMZ zones
These templates default to
iosv/iosvl2(bundled with every CML install); swapnode_definitionper node for platform-specific images (e.g.nxosv,csr1000v,asav) if you have them.
Typical flow
list_node_definitions()- see what platforms are available.- Either:
list_example_topologies()→deploy_example_topology("two_router_ospf"), or- describe an architecture and let the assistant design a node/link spec,
then call
build_topology(...)directly.
start_lab(lab_id), thenget_lab_topology(lab_id)to check node state.get_node_console_log/extract_node_configto inspect a running node;set_node_config+wipe_lab+start_labto iterate on day-0 config.delete_lab(lab_id)when done - this is permanent.
Security notes
- This server can create, start, and delete labs and nodes on the target
CML controller. Scope the CML account to a dedicated user if you don't
want it operating with full admin rights, and treat
delete_lab,wipe_lab, andremove_nodeas destructive, unrecoverable actions. - Credentials are only ever read (from
cml-config.tomlor env vars); nothing is written to disk by this server. Keep the config file out of version control (it's in.gitignoreby default) and permissioned600. - Session/token handling (login, refresh, re-auth) is delegated entirely to
virl2_client.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.