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

    Interface FetchMEPsResult

    Result of a paginated MEP fetch. Callers should inspect complete to determine whether the returned meps array represents a full dataset or only a partial snapshot (due to a pagination error).

    interface FetchMEPsResult {
        complete: boolean;
        meps: MEP[];
        failureOffset?: number;
    }
    Index

    Properties

    complete: boolean

    true when all pages were fetched successfully; false on error.

    meps: MEP[]

    MEPs collected so far (may be partial on error).

    failureOffset?: number

    The offset at which a failure occurred, if any.