.env.exampleโข649 B
# Reddit API Configuration
# Get these credentials from https://www.reddit.com/prefs/apps
# Required: Basic Reddit API access
REDDIT_CLIENT_ID=your_client_id_here
REDDIT_CLIENT_SECRET=your_client_secret_here
REDDIT_USER_AGENT=RedditMCPServer/1.0.0
# Optional: For write operations (creating posts, comments)
# Only needed if you want to create content, not just read
REDDIT_USERNAME=your_reddit_username
REDDIT_PASSWORD=your_reddit_password
# Note:
# - For read-only mode, only the first 3 variables are required
# - For full functionality (posting/commenting), all variables are needed
# - Never commit your actual .env file to version control