Files
proxmox-mcp-custom/.env.example
Ben eaa88a7cf9
All checks were successful
Build and Push Proxmox MCP Docker Image / build (push) Successful in 8s
Initial commit: Custom Proxmox MCP with SSE wrapper
2025-12-14 20:34:39 +00:00

25 lines
847 B
Plaintext

# Proxmox MCP Server - Environment Variables
# Copy this file to .env and fill in your values
# --- Proxmox API Configuration ---
# Base URL of your Proxmox VE instance (without https://)
PROXMOX_URL=pve.local.example.io:8006
# Proxmox API User (e.g., "root@pam", "user@pve", "proxmox-mcp@pam")
PROXMOX_USER=proxmox-mcp@pam
# --- Token Authentication (Recommended) ---
# Token ID (the name after the !, e.g., if "user@pam!mytoken" then use "mytoken")
PROXMOX_TOKEN_ID=token
# Token Secret Value (the long UUID-like string)
PROXMOX_PASSWORD=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
# --- OR Password Authentication ---
# If not using tokens, set PROXMOX_PASSWORD to the user's password
# and leave PROXMOX_TOKEN_ID empty
# --- SSL Verification ---
# Set to 'true' in production, 'false' for self-signed certs in homelabs
PROXMOX_VERIFY_SSL=false