Cisco Catalyst SD-WAN MCP Server
OfficialAllows interaction with Cisco Catalyst SD-WAN Manager (vManage) to query and manage SD-WAN fabric through vManage REST API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Cisco Catalyst SD-WAN MCP Serverlist all devices in the fabric"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Cisco Catalyst SD-WAN MCP Server
Model Context Protocol (MCP) server for Cisco Catalyst SD-WAN Manager (vManage). It exposes vManage REST API capabilities as MCP tools, allowing AI assistants to query and manage SD-WAN fabric through vManage. SD-WAN routers are accessed only via vManage—no direct router communication.
Features
39 MCP tools covering device management, real-time monitoring, templates, policies, CloudExpress, and administration
Dual authentication: JWT (recommended for vManage 20.18.1+) and session-based (JSESSIONID) fallback
Docker support for containerized deployment
HTTPS on port 443 by default for vManage communication
Related MCP server: cisco-secure-access-mcp
Prerequisites
Node.js 18+
Access to a Cisco Catalyst SD-WAN Manager (vManage) instance
vManage credentials with appropriate API permissions
Configuration
Environment Variables
Variable | Required | Default | Description |
| Yes | - | vManage hostname or IP address |
| Yes | - | vManage username |
| Yes | - | vManage password |
| No | 443 | vManage HTTPS port |
| No | true | Use JWT auth (set false for session-based) |
Cursor MCP Configuration
Add to your Cursor MCP settings (e.g. ~/.cursor/mcp.json or project .cursor/mcp.json):
Using Docker:
{
"mcpServers": {
"catalyst-sdwan": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e", "VMANAGE_HOST=your-vmanage.example.com",
"-e", "VMANAGE_PORT=443",
"-e", "VMANAGE_USERNAME=admin",
"-e", "VMANAGE_PASSWORD=your_password",
"catalyst-sdwan-mcp:latest"
]
}
}
}Using Node.js directly:
{
"mcpServers": {
"catalyst-sdwan": {
"command": "node",
"args": ["/path/to/catalyst-sdwan-mcp/build/index.js"],
"env": {
"VMANAGE_HOST": "your-vmanage.example.com",
"VMANAGE_PORT": "443",
"VMANAGE_USERNAME": "admin",
"VMANAGE_PASSWORD": "your_password"
}
}
}
}Docker
Build
cd catalyst-sdwan-mcp
docker build -t catalyst-sdwan-mcp:latest .Run with docker-compose
# Create .env from .env.example and set credentials
cp .env.example .env
# Edit .env with your vManage details
docker-compose up -dRun standalone
docker run -i --rm \
-e VMANAGE_HOST=10.1.1.1 \
-e VMANAGE_PORT=443 \
-e VMANAGE_USERNAME=admin \
-e VMANAGE_PASSWORD=secret \
catalyst-sdwan-mcp:latestAvailable Tools (39)
Device Management
list_devices- List all devices in the fabricget_device_details- Get details for a specific devicelist_reachable_devices- List reachable deviceslist_controllers- List vManage, vSmart, vBond controllers
Real-time Monitoring (Control & OMP)
get_control_connections- Control plane connectionsget_control_summary- Control plane summaryget_control_statistics- DTLS statisticsget_omp_peers- OMP peersget_omp_routes- OMP routesget_omp_summary- OMP summary
Real-time Monitoring (BFD, BGP, Interfaces)
get_bfd_sessions- BFD sessionsget_bfd_summary- BFD summaryget_bfd_tloc- BFD per TLOCget_bgp_neighbors- BGP neighborsget_bgp_routes- BGP routesget_bgp_summary- BGP summaryget_device_interfaces- Interface statusget_system_status- System status (CPU, memory)get_device_arp- ARP table
Application Routing & Cflowd
get_app_route_statistics- App-route tunnel statsget_app_route_sla_class- SLA class infoget_cflowd_flows- Cflowd flowsget_cflowd_statistics- Cflowd statsget_app_log_flows- Packet flow logsget_app_log_flow_count- Flow countget_sdwan_stats- SD-WAN statistics
Templates
list_device_templates- Device templateslist_feature_templates- Feature templatesget_attached_devices- Devices attached to templateget_template_definition- Template configuration
Policy
list_policy_lists- Policy listslist_policy_definitions- Policy definitionslist_policies- Configured policies
CloudExpress / Cloud OnRamp
get_cloudx_status- CloudExpress statusget_cloudx_gateway_list- Gateway listget_cloudx_client_list- Client/site listget_cloudx_apps- Apps and VPNs
Administration
list_alarms- Active alarmsget_certificate_summary- Certificate validitylist_vedge_inventory- vEdge inventoryget_cluster_status- Cluster status
Other
list_custom_apps- Custom applicationsget_device_vpn- VPN configurationget_device_tloc- TLOC informationget_bridge_table- Bridge forwarding table
Authentication
The server supports two authentication methods per Cisco Catalyst SD-WAN Manager API docs:
JWT (recommended) - For vManage 20.18.1+. Single login returns access token and XSRF token. Set
VMANAGE_USE_JWT=true(default).Session-based - Legacy method. POST to
/j_security_checkfor JSESSIONID, then GET/dataservice/client/tokenfor XSRF. SetVMANAGE_USE_JWT=false.
All API requests use HTTPS. Self-signed certificates (common in lab environments) are accepted; for production, use properly signed certificates.
API Reference
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/CiscoDevNet/catalyst-sdwan-mcp-community'
If you have feedback or need assistance with the MCP directory API, please join our Discord server