# Bitbucket MCP Configuration
# Authentication method: 'api_token', 'oauth', 'basic'
BITBUCKET_AUTH_METHOD=api_token
# For api_token auth (recommended for Bitbucket Cloud)
BITBUCKET_USER_EMAIL=your.email@example.com
BITBUCKET_API_TOKEN=your_api_token
# Alternative env var names (for compatibility)
# ATLASSIAN_USER_EMAIL=your.email@example.com
# ATLASSIAN_API_TOKEN=your_api_token
# For OAuth auth
# BITBUCKET_OAUTH_CLIENT_ID=your_client_id
# BITBUCKET_OAUTH_CLIENT_SECRET=your_client_secret
# For basic auth (Bitbucket Server/Data Center)
# BITBUCKET_USERNAME=your_username
# BITBUCKET_PASSWORD=your_password
# BITBUCKET_SERVER_URL=https://bitbucket.yourcompany.com
# Optional: Default workspace
# BITBUCKET_WORKSPACE=your_workspace
# Optional: Output format ('json', 'toon', 'compact')
BITBUCKET_OUTPUT_FORMAT=json
# Optional: Request timeout in ms
BITBUCKET_TIMEOUT=30000
# Optional: Max retry attempts
BITBUCKET_MAX_RETRIES=3
# Optional: Log level (debug, info, warn, error)
BITBUCKET_LOG_LEVEL=info