sync_gsc_data
Fetch Google Search Console analytics data into a local SQLite database, bypassing the 1,000-row limit with full pagination support for comprehensive SEO analysis.
Instructions
Fetch Google Search Console search analytics data into a local SQLite database. Supports full pagination to capture ALL rows (no 1,000-row limit). Default date range is 3 months. Pass explicit startDate for longer ranges (up to 16 months). Returns immediately with a job ID — use check_sync_status to monitor progress.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| siteUrl | Yes | GSC property URL, e.g. "sc-domain:example.com" or "https://www.example.com/" | |
| startDate | No | Start date (YYYY-MM-DD). Defaults to 3 months ago. | |
| endDate | No | End date (YYYY-MM-DD). Defaults to today. | |
| dimensions | No | Dimensions to fetch. Defaults to ["query","page","date","device","country"]. | |
| searchType | No | Search type filter. Default: web. |