Initial proxmox-mcp: MCP server for vessel troubleshoot stack.

Part of GeneseasX golden-vessel tooling (see homelab-vault Projects/vessel-troubleshoot-stack).
This commit is contained in:
2026-06-12 22:54:08 +03:00
commit dab31bf8d3
17 changed files with 739 additions and 0 deletions

24
pyproject.toml Normal file
View File

@@ -0,0 +1,24 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "proxmox-mcp"
version = "1.0.0"
description = "Model Context Protocol server for Proxmox VE 9 management"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
keywords = ["mcp", "proxmox", "pve", "hermes"]
dependencies = [
"mcp>=1.0.0",
"httpx>=0.27.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
]
[project.scripts]
proxmox-mcp = "proxmox_mcp.server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/proxmox_mcp"]