AgentHubAgentHub

Cisco Modeling Labs (CML)

MCP ServerMCP Registry官方收录

io.github.xorrkaz/cml-mcp · v0.28.0

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

概览

Cisco Modeling Labs (CML) 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "cml-mcp": {
      "command": "uvx",
      "args": [
        "cml-mcp"
      ],
      "env": {
        "CML_URL": "<CML_URL>",
        "CML_USERNAME": "<CML_USERNAME>",
        "CML_PASSWORD": "<CML_PASSWORD>"
      }
    }
  }
}

环境变量

CML_URL必填

URL for the CML Server

CML_USERNAME必填

Username for CML authentication

CML_PASSWORD必填secret

Password for CML authentication

PYATS_USERNAME可选

Username for authentication to devices running in CML

PYATS_PASSWORD可选secret

Password for authentication to devices running in CML

PYATS_AUTH_PASS可选secret

Enable password for authentication to devices running in CML

相关资源

统一 Manifest

{
  "id": "io.github.xorrkaz/cml-mcp",
  "type": "mcp-server",
  "version": "0.28.0",
  "displayName": "Cisco Modeling Labs (CML)",
  "description": "An MCP server that provides access to common Cisco Modeling Labs (CML) operations.",
  "repository": {
    "url": "https://github.com/xorrkaz/cml-mcp",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "pypi",
        "identifier": "cml-mcp",
        "version": "0.28.0",
        "runtimeHint": "uvx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "CML_URL",
            "description": "URL for the CML Server",
            "isRequired": true
          },
          {
            "name": "CML_USERNAME",
            "description": "Username for CML authentication",
            "isRequired": true
          },
          {
            "name": "CML_PASSWORD",
            "description": "Password for CML authentication",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "PYATS_USERNAME",
            "description": "Username for authentication to devices running in CML"
          },
          {
            "name": "PYATS_PASSWORD",
            "description": "Password for authentication to devices running in CML",
            "isSecret": true
          },
          {
            "name": "PYATS_AUTH_PASS",
            "description": "Enable password for authentication to devices running in CML",
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.xorrkaz/cml-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.xorrkaz%2Fcml-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Cisco Modeling Labs (CML) — MCP Server 安装与配置 · AgentHub