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

    Health status for a single site property.

    interface SiteHealthReport {
        anomalies: AnomalyItem[];
        issues: string[];
        performance: {
            changes: {
                clicks: number;
                clicksPercent: number;
                ctr: number;
                ctrPercent: number;
                impressions: number;
                impressionsPercent: number;
                position: number;
                positionPercent: number;
            };
            current: PerformanceSummary;
            previous: PerformanceSummary;
        };
        permissionLevel: string;
        sitemaps: {
            details: {
                hasErrors: boolean;
                isPending: boolean;
                lastDownloaded: string
                | undefined;
                path: string;
                type: string | undefined;
            }[];
            total: number;
            withErrors: number;
            withWarnings: number;
        };
        siteUrl: string;
        status: "warning"
        | "healthy"
        | "critical";
    }
    Index

    Properties

    anomalies: AnomalyItem[]

    Detected anomalies in the last 14 days.

    issues: string[]

    Human-readable list of issues found.

    performance: {
        changes: {
            clicks: number;
            clicksPercent: number;
            ctr: number;
            ctrPercent: number;
            impressions: number;
            impressionsPercent: number;
            position: number;
            positionPercent: number;
        };
        current: PerformanceSummary;
        previous: PerformanceSummary;
    }

    Performance comparison: this week vs last week.

    permissionLevel: string

    Permission level in Search Console.

    sitemaps: {
        details: {
            hasErrors: boolean;
            isPending: boolean;
            lastDownloaded: string | undefined;
            path: string;
            type: string | undefined;
        }[];
        total: number;
        withErrors: number;
        withWarnings: number;
    }

    Sitemap health summary.

    siteUrl: string

    The site URL.

    status: "warning" | "healthy" | "critical"

    Overall status: healthy, warning, or critical.