European Parliament MCP Server API - v1.2.21
    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;
        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.

    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.