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

    Interface AnalyticsOptions

    Options for querying Google Search Console analytics data.

    interface AnalyticsOptions {
        accountId?: string;
        aggregationType?: "auto" | "byProperty" | "byPage";
        dataState?: "final" | "all";
        dimensions?: string[];
        endDate: string;
        filters?: { dimension: string; expression: string; operator: string }[];
        limit?: number;
        siteUrl: string;
        startDate: string;
        startRow?: number;
        type?: string;
    }
    Index

    Properties

    accountId?: string

    Optional account ID for multi-account resolution.

    aggregationType?: "auto" | "byProperty" | "byPage"

    Whether to aggregate data by property or by page. Defaults to 'auto'.

    dataState?: "final" | "all"

    Data state: 'final' (stable data only) or 'all' (includes fresh, volatile data). Defaults to 'final'.

    dimensions?: string[]

    Dimensions to group data by (e.g., 'query', 'page', 'device', 'country', 'date').

    endDate: string

    End date in YYYY-MM-DD format.

    filters?: { dimension: string; expression: string; operator: string }[]

    Optional filters to refine the query.

    limit?: number

    Maximum number of rows to return. Max 25,000.

    siteUrl: string

    The URL of the property (site or domain) in GSC.

    startDate: string

    Start date in YYYY-MM-DD format.

    startRow?: number

    Zero-based index of the first row to return.

    type?: string

    Search type: 'web', 'image', 'video', 'news', 'discover', or 'googleNews'. Defaults to 'web'.