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

    Represents a significant change in performance for a specific item.

    interface TrendItem {
        change: number;
        changePercent: number;
        currentValue: number;
        key: string;
        metric: "clicks" | "impressions" | "ctr" | "position";
        previousValue: number;
        trend: "rising" | "declining";
    }
    Index

    Properties

    change: number

    The absolute change between periods.

    changePercent: number

    The percentage change between periods.

    currentValue: number

    The value in the most recent period.

    key: string

    The item identifier (e.g., the query or page).

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

    The specific metric being tracked.

    previousValue: number

    The value in the preceding period.

    trend: "rising" | "declining"

    Whether the metric is rising or declining.