We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kushal45/GmailMcpServer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.env.test.example•1.46 kB
# Gmail MCP Server Test Environment Variables
# Copy this file to .env.test and fill in your actual values
# Gmail Test Account Credentials
GMAIL_TEST_EMAIL=your-test-email@gmail.com
GMAIL_TEST_PASSWORD=your-app-password-here
GMAIL_TEST_DISPLAY_NAME=Your Name
# Optional: Second test user for multi-user testing
GMAIL_TEST_EMAIL_2=your-second-test-email@gmail.com
GMAIL_TEST_DISPLAY_NAME_2=Second User Name
# Set to 'true' if using App Password (recommended for testing)
# App Passwords are more secure and bypass 2FA requirements
GMAIL_USE_APP_PASSWORD=true
# Browser Settings for Testing
# Set to 'false' to see browser during testing (useful for debugging)
HEADLESS_BROWSER=true
# Storage paths (optional - defaults will be used if not set)
# STORAGE_PATH=/path/to/your/storage/directory
# Instructions for setting up App Passwords:
# 1. Go to your Google Account settings: https://myaccount.google.com/
# 2. Navigate to Security > 2-Step Verification (enable if not already enabled)
# 3. Go to Security > App passwords
# 4. Generate a new app password for "Mail"
# 5. Use the generated 16-character password as GMAIL_TEST_PASSWORD
# 6. Set GMAIL_USE_APP_PASSWORD=true
# Alternative: Using regular password (less secure, may require additional setup)
# If you prefer to use your regular password:
# 1. Set GMAIL_USE_APP_PASSWORD=false
# 2. You may need to enable "Less secure app access" (not recommended)
# 3. Be prepared to handle 2FA prompts manually