v1.2.4: Configurable Settings & Enhanced Documentation
Overview
This release adds environment variable configuration support and enhances documentation, making the server more flexible and easier to configure.
馃敡 Configuration Updates
New Environment Variables
- Retry Configuration:
FIRE_CRAWL_RETRY_MAX_ATTEMPTS(default: 3)FIRE_CRAWL_RETRY_INITIAL_DELAY(default: 1000ms)FIRE_CRAWL_RETRY_MAX_DELAY(default: 10000ms)FIRE_CRAWL_RETRY_BACKOFF_FACTOR(default: 2)
- Credit Monitoring:
FIRE_CRAWL_CREDIT_WARNING_THRESHOLD(default: 1000)FIRE_CRAWL_CREDIT_CRITICAL_THRESHOLD(default: 100)
馃摎 Documentation Improvements
- Added comprehensive configuration examples
- Enhanced retry behavior documentation with timing examples
- Improved credit monitoring documentation
- Updated Claude Desktop configuration guide
馃挕 Example Usage
Cloud API with custom retry settings
export FIRE_CRAWL_API_KEY=your-api-key
export FIRE_CRAWL_RETRY_MAX_ATTEMPTS=5
export FIRE_CRAWL_RETRY_INITIAL_DELAY=2000Self-hosted with custom credit thresholds
export FIRE_CRAWL_API_URL=https://firecrawl.your-domain.com
export FIRE_CRAWL_CREDIT_WARNING_THRESHOLD=2000馃攳 Technical Details
- All configuration options now support environment variable overrides
- Maintained backward compatibility with default values
- Enhanced error messages for configuration validation
馃搵 Full Changelog
See CHANGELOG.md for complete details.