.env.example•1.15 kB
# Alpha Vantage API Key (Required)
# Obtain from https://www.alphavantage.co/support/#api-key
# This serves as a fallback if a specific key is not provided via extraArgs
# during an MCP tool call.
API_KEY=YOUR_ALPHA_VANTAGE_API_KEY
# Logging Level (optional, default: info)
# Possible values: error, warn, info, debug
LOG_LEVEL=info
# Resource Cleanup Interval in milliseconds (optional, default: 1800000 - 30 minutes)
# Time after which inactive managed resources (AVantage client instances)
# will be cleaned up by the ResourceManager.
RESOURCE_CLEANUP_INTERVAL=1800000
# Maximum number of retries for operations (optional, default: 3)
# Used by the retryWithExponentialBackoff utility (if added). Not used by default template.
# MAX_RETRIES=3
# Base delay in milliseconds for retry operations (optional, default: 1000)
# Used by the retryWithExponentialBackoff utility (if added). Not used by default template.
# RETRY_BASE_DELAY=1000
# Alpha Vantage Premium Flag (optional, default: false)
# Set to 'true' if you have a premium Alpha Vantage subscription to enable
# access to premium endpoints via the avantage library.
# AV_PREMIUM=false