Google algorithm update checker
Check whether a search change overlaps a confirmed Google ranking update window. Matching dates are useful context, but they do not prove the update caused the movement.
Install and run the tool
Install the CLI once, then run seo start to connect your site and Google data. After setup you can run this tool yourself or ask your agent to run it.
Install the SEO CLI globally.
npm i -g seoRun setup after installation.
seo startCompare traffic movement with confirmed Google update windows.
seo update-correlate --project exampleWhat the tool gives you
Compare unusual Search Console traffic dates with confirmed Google ranking updates without treating a matching date as proof of what caused the change.
- Best for
- A traffic anomaly falls near dates listed on Google’s Search Status Dashboard.
- Needs
- Search Console traffic anomaly result
- You get
- Compare unusual Search Console traffic dates with confirmed Google ranking updates without treating a matching date as proof of what caused the change.
- Use next
- Review winners and losers around a Google update
Every report follows the same rules for missing data and outside estimates.See how report data works.
What you need before you run it
The report uses the information below. Optional sources are only used when you ask for them.
Search Console traffic anomaly result
Provides the observed movement, baseline, recent window, and significance evidence.
Official Google ranking update windows
Provides confirmed rollout dates from Google Search Status.
Use a different report for these jobs
These jobs need a different report or a manual review.
Use the tool with an agent or in code
The command above is enough for most work. These options let an agent, script or application run the same tool with explicit input and structured output.
CLI
Use the report catalog when an agent, script or CI job needs predictable JSON instead of the normal terminal output. Check the current input first, then run the tool with the validated parameters.
Check the current input before the agent or script runs the tool.
seo reports describe update-correlation --jsonOnce the input is valid, run the tool through the report catalog.
seo reports run update-correlation --params '{"site":"sc-domain:example.com","days":90,"recentDays":7,"paddingDays":2,"refresh":false}' --jsonMCP
An MCP agent follows the same two-step flow. It inspects the current schema, fills the required fields and only then runs the tool.
Ask the MCP server for the current tool input.
{
"id": "update-correlation"
}Run the tool after the agent has checked and filled the input.
{
"id": "update-correlation",
"params": {
"site": "sc-domain:example.com",
"days": 90,
"recentDays": 7,
"paddingDays": 2,
"refresh": false
}
}TypeScript
Install the package in a Node 22 project when your application needs to run the tool directly. The result includes the same evidence, warnings and limits returned through the CLI and MCP server.
Add the SEO package to your project.
npm install seoRun the tool from your TypeScript application.
import { executeReport } from 'seo/mcp'
const result = await executeReport(
'update-correlation',
{
"site": "sc-domain:example.com",
"days": 90,
"recentDays": 7,
"paddingDays": 2,
"refresh": false
},
)
console.log(result)What to do next
Use the matching update window as context for the investigation, not its conclusion. Inspect the pages and queries that moved, then run a postmortem after the comparison window has settled.
- 01Use the update postmortem workflow to inspect winners, losers, and known confounders.
- 02Audit representative pages before making template-wide changes.
Related reports
Review Search Console winners and losers around a confirmed Google update window and keep timing evidence separate from a claim of cause in the final report.
Compare Search Console movement by page, query, country or device to find which segment explains a wider gain or loss across the selected dates.
Audit one URL for technical SEO, metadata, canonicals, schema, links and Search Console queries. See the live evidence before changing the page.
Sources used by this tool
These primary sources define the provider data or search controls used by the result.