European Parliament MCP Server API - v1.3.9
    Preparing search index...

    Optional machine-readable metadata attached to an empty/failed feed response.

    Allows downstream consumers to classify the failure and decide whether to retry the request, fall back to a non-feed endpoint, or skip entirely.

    interface FeedErrorMeta {
        errorCode?: FeedErrorCode;
        retryable?: boolean;
        retryAfterMs?: number;
        upstream?: { errorMessage?: string; statusCode?: number };
    }
    Index

    Properties

    errorCode?: FeedErrorCode

    Machine-readable failure classification.

    retryable?: boolean

    Whether the failure is transient and the request should be retried.

    retryAfterMs?: number

    Suggested delay (in milliseconds) before retrying, when known.

    Populated for RATE_LIMIT failures originating from the local token-bucket limiter (where the wait time is precisely known) and may be populated for upstream rate-limits when a Retry-After value is parsed.

    upstream?: { errorMessage?: string; statusCode?: number }

    Information about the upstream error, when available.

    Type Declaration

    • OptionalerrorMessage?: string

      Raw error message from the upstream response body.

    • OptionalstatusCode?: number

      HTTP status code parsed from the upstream error message, if present.