# 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