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

    Interface CannibalizationCheckResult

    Result of a cannibalization check between two pages.

    interface CannibalizationCheckResult {
        engine?: "google" | "bing";
        isCannibalized: boolean;
        overlapScore: number;
        pageA: string;
        pageB: string;
        query: string;
        recommendation: string;
    }
    Index

    Properties

    engine?: "google" | "bing"

    The search engine this data originates from.

    isCannibalized: boolean

    Whether cannibalization was detected.

    overlapScore: number

    A score (0-1) representing the severity of the conflict.

    pageA: string

    The first page URL.

    pageB: string

    The second page URL.

    query: string

    The search query being analyzed.

    recommendation: string

    A human-readable recommendation for resolving the conflict.