MCP Server Framework - v1.0.0
    Preparing search index...

    Variable RECONNECT_DEFAULTSConst

    RECONNECT_DEFAULTS: {
        BACKOFF_MULTIPLIER: 1.5;
        INITIAL_DELAY_MS: 1000;
        MAX_DELAY_MS: 30000;
        MAX_RETRIES: 5;
    } = ...

    Default configuration for auto-reconnect. Modeled after the SDK's StreamableHTTPReconnectionOptions pattern.

    Type Declaration

    • ReadonlyBACKOFF_MULTIPLIER: 1.5

      Exponential backoff multiplier.

    • ReadonlyINITIAL_DELAY_MS: 1000

      Initial delay before the first reconnect attempt (ms).

    • ReadonlyMAX_DELAY_MS: 30000

      Maximum delay between reconnect attempts (ms).

    • ReadonlyMAX_RETRIES: 5

      Maximum number of reconnect attempts before giving up.