Initial commit: Cisco Switch MCP with fixes C3, C4, C5, C6, S2

This commit is contained in:
root
2026-07-04 20:15:11 +00:00
commit 68e87cf6a5
30 changed files with 727 additions and 0 deletions

23
pyproject.toml Normal file
View File

@@ -0,0 +1,23 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cisco-switch-mcp"
version = "1.0.0"
description = "Model Context Protocol server for Cisco Catalyst IOS-XE switch management"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
dependencies = [
"mcp>=1.0.0",
"netmiko>=4.3.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
]
[project.scripts]
cisco-switch-mcp = "cisco_switch_mcp.server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/cisco_switch_mcp"]