Google SEO MCP Server API - v1.13.5
    Preparing search index...

    Represents a data point that deviates significantly from the expected value.

    interface AnomalyItem {
        date: string;
        deviation: number;
        expectedValue: number;
        metric: "clicks" | "impressions" | "ctr" | "position";
        type: "spike" | "drop";
        value: number;
    }
    Index

    Properties

    date: string

    The date of the anomaly.

    deviation: number

    The percentage deviation from the expected value.

    expectedValue: number

    The expected value based on the historical baseline.

    metric: "clicks" | "impressions" | "ctr" | "position"

    The metric where the anomaly was detected.

    type: "spike" | "drop"

    Whether the anomaly is a spike (increase) or a drop (decrease).

    value: number

    The actual recorded value.