Files
unraid-mcp/.env.example
2025-06-11 16:35:24 -04:00

18 lines
735 B
Plaintext

# Unraid MCP Server Configuration
UNRAID_API_URL=https://your-unraid-server-url/graphql # Ensure this matches what the server script (unraid-mcp-server.py) expects
UNRAID_API_KEY=your_unraid_api_key
# MCP Server Settings
UNRAID_MCP_TRANSPORT=sse
UNRAID_MCP_HOST=0.0.0.0
UNRAID_MCP_PORT=6970
# Logging
UNRAID_MCP_LOG_LEVEL=INFO # Changed from UNRAID_LOG_LEVEL
UNRAID_MCP_LOG_FILE=unraid-mcp.log # Added
# Optional: SSL verification for Unraid API calls
# Set to 'false' or '0' to disable (e.g., for self-signed certs).
# Set to a path to a CA bundle file to use custom CAs.
# Defaults to 'true' (SSL verification enabled) if not set in server code, but explicitly configurable via UNRAID_VERIFY_SSL in script.
UNRAID_VERIFY_SSL=true