Cisco Catalyst SD-WAN MCP Server
MCP server for Cisco Catalyst SD-WAN Manager (vManage) that exposes REST API as tools for AI assistants to query and manage SD-WAN fabric, including device management, monitoring, templates, and policies.
README
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
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 |
|---|---|---|---|
VMANAGE_HOST |
Yes | - | vManage hostname or IP address |
VMANAGE_USERNAME |
Yes | - | vManage username |
VMANAGE_PASSWORD |
Yes | - | vManage password |
VMANAGE_PORT |
No | 443 | vManage HTTPS port |
VMANAGE_USE_JWT |
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 -d
Run 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:latest
Available 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
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.