18 lines
549 B
Plaintext
18 lines
549 B
Plaintext
# Acai MCP Server — Environment Variables
|
|
# Copy this file to .env and fill in your values.
|
|
|
|
# --- API Keys ---
|
|
NANO_BANANA_API_KEY=your_nano_banana_key
|
|
PIXABAY_API_KEY=your_pixabay_key
|
|
PEXELS_API_KEY=your_pexels_key
|
|
|
|
# --- Security ---
|
|
# Generate a strong random secret for JWT signing:
|
|
# node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"
|
|
MCP_JWT_SECRET=change_me_to_a_strong_random_value
|
|
|
|
# --- Optional: Default Acai credentials ---
|
|
# ACAI_TOKEN=your_token
|
|
# ACAI_WEBSITE=your_website
|
|
# ACAI_TOKEN_HASH=your_token_hash
|