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

    Interface IncrementalDetailState

    Mutable state carried across a weekly refresh: the detail records fetched so far (keyed by every identifier variant) and the identifiers that returned a definitive "not found" and should not be retried this cycle.

    interface IncrementalDetailState {
        details: Record<string, unknown>;
        missingIds: Set<string>;
    }
    Index
    details: Record<string, unknown>
    missingIds: Set<string>