.env.example•1.19 kB
# Algorand MCP Server Configuration
# Network configuration (mainnet, testnet, or betanet)
ALGORAND_NETWORK=mainnet
# Server configuration
PORT=8080
NODE_ENV=development
# Optional: Default account for testing (DO NOT USE IN PRODUCTION!)
# WARNING: Never commit real mainnet credentials to version control
# For testnet, get free ALGO from: https://bank.testnet.algorand.network/
# For mainnet, you need to buy ALGO from exchanges
#
# ALGORAND_ACCOUNT_ADDRESS=YOUR_ALGORAND_ADDRESS_HERE
# ALGORAND_ACCOUNT_MNEMONIC="word1 word2 word3 ... word25"
# or
# ALGORAND_ACCOUNT_PRIVATE_KEY=base64_encoded_private_key
# Optional: Custom node endpoints (defaults are provided based on ALGORAND_NETWORK)
# Default endpoints:
# - Mainnet: https://mainnet-api.algonode.cloud
# - Testnet: https://testnet-api.algonode.cloud
# - Betanet: https://betanet-api.algonode.cloud
#
# You can override with custom nodes:
# ALGORAND_NODE_URL=https://mainnet-api.algonode.cloud
# ALGORAND_INDEXER_URL=https://mainnet-idx.algonode.cloud
#
# Alternative free public nodes:
# - AlgoNode: https://algonode.cloud (default, recommended)
# - PureStake: https://mainnet-algorand.api.purestake.io/ps2 (requires API key)