# PowerPoint MCP Server Configuration
# Server Settings
PPTX_SERVER_PORT=9000
PPTX_SERVER_HOST=0.0.0.0
PPTX_SERVER_DEBUG=false
PPTX_ENABLE_HTTP_DOWNLOADS=true
# Security Settings
PPTX_ENABLE_FILE_UPLOADS=true
PPTX_MAX_FILE_SIZE_MB=50
PPTX_MAX_PRESENTATION_SIZE_MB=100
PPTX_ALLOWED_UPLOAD_EXTENSIONS=png,jpg,jpeg,gif,bmp,pptx
PPTX_ENABLE_DOWNLOADS=true
PPTX_DOWNLOAD_TOKEN_EXPIRY_HOURS=24
# Directory Configuration
PPTX_WORK_DIR=/tmp/pptx_server
PPTX_TEMP_DIR=/tmp/pptx_server/temp
PPTX_TEMPLATES_DIR=/tmp/pptx_server/templates
PPTX_OUTPUT_DIR=/tmp/pptx_server/output
PPTX_UPLOADS_DIR=/tmp/pptx_server/uploads
# File Management
PPTX_AUTO_CLEANUP_HOURS=48
PPTX_MAX_FILES_PER_SESSION=50
PPTX_ENABLE_FILE_VERSIONING=true
PPTX_DEFAULT_SLIDE_FORMAT=16:9
# Logging
PPTX_LOG_LEVEL=INFO
PPTX_LOG_TO_FILE=true
PPTX_LOG_FILE=/tmp/pptx_server/logs/pptx_server.log
PPTX_LOG_ROTATION_SIZE_MB=10
# Rate Limiting
PPTX_ENABLE_RATE_LIMITING=true
PPTX_MAX_REQUESTS_PER_MINUTE=60
PPTX_MAX_PRESENTATIONS_PER_HOUR=20
# Authentication (optional)
PPTX_REQUIRE_AUTH=false
PPTX_API_KEY=your-secret-api-key-here
PPTX_JWT_SECRET=your-jwt-secret-here
# Advanced Features
PPTX_ENABLE_BATCH_OPERATIONS=true
PPTX_ENABLE_TEMPLATE_SYSTEM=true
PPTX_ENABLE_COMPOSITE_TOOLS=true
PPTX_MAX_BATCH_SLIDES=100
# Resource Limits
PPTX_MAX_MEMORY_MB=512
PPTX_MAX_CONCURRENT_OPERATIONS=10
PPTX_OPERATION_TIMEOUT_SECONDS=300