# ====================================================================
# Content & Image Generation MCP Server - Environment Configuration
# ====================================================================
# REQUIRED: Google AI API Key
# Get your key from: https://aistudio.google.com/apikey
# Used for: Imagen 3/4 image generation, Veo 3 video generation, Gemini content
GOOGLE_API_KEY=your_google_ai_api_key_here
# OPTIONAL: Anthropic API Key
# Get your key from: https://console.anthropic.com/
# Used for: Claude-powered content generation (alternative to Gemini)
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# ====================================================================
# Server Configuration
# ====================================================================
# Server name displayed in MCP clients
MCP_SERVER_NAME=Content & Image Generation
# Logging level: DEBUG, INFO, WARNING, ERROR, CRITICAL
# Production recommendation: INFO or WARNING
LOG_LEVEL=INFO
# Output directory for generated images and videos
# Relative to server directory or absolute path
OUTPUT_DIR=./output
# ====================================================================
# Production Deployment (Optional)
# ====================================================================
# For HTTP transport deployment
MCP_SERVER_HOST=0.0.0.0
MCP_SERVER_PORT=8000
# ====================================================================
# Cost Tracking (Optional)
# ====================================================================
# Enable cost tracking features
ENABLE_COST_TRACKING=true
# Alert threshold in USD
COST_ALERT_THRESHOLD=100.00
# ====================================================================
# Notes
# ====================================================================
# - Never commit this file with real API keys
# - Copy to .env and fill in your actual values
# - .env is gitignored for security
# - For FastMCP Cloud: Set environment variables in dashboard