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

    Interface FeedProjection

    Per-feed projection used in the get_server_health response.

    Preserves the existing lastSuccess / lastError / lastAttempt fields (backward compatible) and adds a lastProbedAt alias for lastAttempt so consumers can judge cache staleness (see issue #1, recommendation 3).

    interface FeedProjection {
        status: "unknown" | "error" | "ok";
        lastAttempt?: string;
        lastError?: string;
        lastProbedAt?: string;
        lastSuccess?: string;
    }
    Index

    Properties

    status: "unknown" | "error" | "ok"
    lastAttempt?: string
    lastError?: string
    lastProbedAt?: string
    lastSuccess?: string