Initial import from Proxmox host

This commit is contained in:
Hermes CT107
2026-06-12 17:59:34 +00:00
commit 74edd09eb8
20 changed files with 1595 additions and 0 deletions

25
pyproject.toml Normal file
View File

@@ -0,0 +1,25 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "opnsense-mcp"
version = "1.0.0"
description = "Model Context Protocol server for OPNsense firewall management"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "OPNsense MCP" }]
keywords = ["mcp", "opnsense", "firewall", "hermes"]
dependencies = [
"mcp>=1.0.0",
"httpx>=0.27.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
]
[project.scripts]
opnsense-mcp = "opnsense_mcp.server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/opnsense_mcp"]