Skip to content

v1.2.4: Configurable Settings & Enhanced Documentation

Latest
Compare
Choose a tag to compare
@vrknetha vrknetha released this 11 Feb 03:51
· 2 commits to main since this release

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=2000

Self-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.