Initial commit: Custom Proxmox MCP with SSE wrapper
All checks were successful
Build and Push Proxmox MCP Docker Image / build (push) Successful in 8s
All checks were successful
Build and Push Proxmox MCP Docker Image / build (push) Successful in 8s
This commit is contained in:
24
.env.example
Normal file
24
.env.example
Normal file
@@ -0,0 +1,24 @@
|
||||
# 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
|
||||
Reference in New Issue
Block a user