Initial commit: Custom Proxmox MCP with SSE wrapper
All checks were successful
Build and Push Proxmox MCP Docker Image / build (push) Successful in 8s

This commit is contained in:
Ben
2025-12-14 18:07:57 +00:00
commit 1c02d5cf6d
11 changed files with 458 additions and 0 deletions

22
docker-compose.yml Normal file
View File

@@ -0,0 +1,22 @@
services:
proxmox-mcp:
image: gitea.ext.ben.io/b3nw/proxmox-mcp-custom:latest
container_name: proxmox-mcp
environment:
# --- Proxmox API Credentials ---
# Base URL of your Proxmox VE instance (e.g., pve.local.ben.io:8006)
- PROXMOX_URL=your_proxmox_host:8006
# Proxmox API User (e.g., root@pam or user@pve)
- PROXMOX_USER=your_proxmox_user
# Proxmox API Token Secret (usually starts with "pve_mcp!")
- PROXMOX_PASSWORD=your_proxmox_token_secret
# Proxmox API Token ID (e.g., "mcp-token")
- PROXMOX_TOKEN_ID=your_proxmox_token_id
# Set to 'true' to skip SSL verification (e.g., for self-signed certs in homelab)
- PROXMOX_VERIFY_SSL=false
# --- MCP Server Settings ---
- PORT=8000 # Internal container port
ports:
- "8000:8000" # Host Port : Container Port
restart: unless-stopped