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

    Interface CorrelatedIntelligenceReport

    Full correlated intelligence report

    interface CorrelatedIntelligenceReport {
        alerts: CorrelationAlert[];
        analysisTime: string;
        confidenceLevel: ConfidenceLevel;
        correlationId: string;
        correlations: {
            coalitionFracture: CoalitionFractureCorrelation | null;
            influenceAnomaly: InfluenceAnomalyCorrelation[];
            networkProfiles: NetworkProfileCorrelation[];
        };
        dataAvailability: DataAvailability;
        dataFreshness: string;
        dataQualityWarnings: string[];
        methodology: string;
        scope: {
            groups: string[];
            mepIds: string[];
            networkAnalysisIncluded: boolean;
            sensitivityLevel: string;
        };
        sourceAttribution: string;
        summary: {
            correlationsFound: number;
            criticalAlerts: number;
            highAlerts: number;
            lowAlerts: number;
            mediumAlerts: number;
            totalAlerts: number;
        };
    }

    Hierarchy (View Summary)

    Index

    Properties

    analysisTime: string
    confidenceLevel: ConfidenceLevel

    Confidence level of the analysis: HIGH, MEDIUM, or LOW. Derived from the volume and quality of underlying data.

    correlationId: string
    correlations: {
        coalitionFracture: CoalitionFractureCorrelation | null;
        influenceAnomaly: InfluenceAnomalyCorrelation[];
        networkProfiles: NetworkProfileCorrelation[];
    }
    dataAvailability: DataAvailability

    Explicit marker indicating whether correlation data was available from dependent tools

    dataFreshness: string

    Human-readable indicator of how recent the underlying data is.

    dataQualityWarnings: string[]

    Explicit warnings about data quality issues, unavailable metrics, or limitations that affect the reliability of this analysis. Empty array when all data is available and reliable.

    ISMS Policy: A.8.11 (Data integrity), GDPR Article 5(1)(d) (Accuracy)

    methodology: string

    Description of the analytical methodology used to produce this output.

    scope: {
        groups: string[];
        mepIds: string[];
        networkAnalysisIncluded: boolean;
        sensitivityLevel: string;
    }
    sourceAttribution: string

    Attribution string identifying the European Parliament Open Data Portal data sources used in this analysis.

    summary: {
        correlationsFound: number;
        criticalAlerts: number;
        highAlerts: number;
        lowAlerts: number;
        mediumAlerts: number;
        totalAlerts: number;
    }