Skip to content
VS Code

Cisco SD-WAN MCP Server for VS Code

io.github.pcdamasceno/cisco-sdwan-mcp

MCP server for Cisco Catalyst SD-WAN (vManage): fabric inventory, device health, alarms, policies.

client:VS Code transport:stdio runtime:pypi

Install Cisco SD-WAN MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sdwan-vmanage-url",
      "description": "SDWAN_VMANAGE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sdwan-username",
      "description": "SDWAN_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sdwan-password",
      "description": "SDWAN_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-transport",
      "description": "MCP_TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sdwan-verify-ssl",
      "description": "SDWAN_VERIFY_SSL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sdwan-ca-bundle",
      "description": "SDWAN_CA_BUNDLE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sdwan-enable-writes",
      "description": "SDWAN_ENABLE_WRITES",
      "password": true
    }
  ],
  "servers": {
    "cisco-sdwan-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "cisco-sdwan-mcp"
      ],
      "env": {
        "SDWAN_VMANAGE_URL": "${input:sdwan-vmanage-url}",
        "SDWAN_USERNAME": "${input:sdwan-username}",
        "SDWAN_PASSWORD": "${input:sdwan-password}",
        "MCP_TRANSPORT": "${input:mcp-transport}",
        "SDWAN_VERIFY_SSL": "${input:sdwan-verify-ssl}",
        "SDWAN_CA_BUNDLE": "${input:sdwan-ca-bundle}",
        "SDWAN_ENABLE_WRITES": "${input:sdwan-enable-writes}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Cisco SD-WAN MCP Server in other clients