SEO crawl comparison
See what changed between two saved crawl snapshots without fetching the site again. Check that both crawls covered a comparable part of the site before celebrating a fix or reporting a regression.
Install and run the report
Install the CLI once, then run seo start to connect your site and Google data. After setup you can run this report yourself or ask your agent to run it.
Install the SEO CLI globally.
npm i -g seoRun setup after installation.
seo startCompare two saved crawl snapshots.
seo crawl-reports --compare latest --against previousWhat you get from this report
Compare two saved SEO crawls to find new, fixed and changed technical issues. Check the crawl scope before treating the difference as real or complete.
- Best for
- You need to verify a deployment, migration, or technical cleanup.
- Needs
- Earlier saved crawl report
- You get
- Compare two saved SEO crawls to find new, fixed and changed technical issues. Check the crawl scope before treating the difference as real or complete.
- Use next
- Find URLs affected by a crawl issue
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.
Earlier saved crawl report
Provides the baseline pages, issues, config, limits, and source status.
Later saved crawl report
Provides the current snapshot and its own scope, caps, failures, and evidence.
Use a different report for these jobs
These jobs need a different report or a manual review.
Use the report 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 report 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 report with the validated parameters.
Check the current input before the agent or script runs the report.
seo reports describe compare-crawls --jsonOnce the input is valid, run the report through the report catalog.
seo reports run compare-crawls --params '{"after":"latest","before":"previous","site":"sc-domain:example.com"}' --jsonMCP
An MCP agent follows the same two-step flow. It inspects the current schema, fills the required fields and only then runs the report.
Ask the MCP server for the current report input.
{
"id": "compare-crawls"
}Run the report after the agent has checked and filled the input.
{
"id": "compare-crawls",
"params": {
"after": "latest",
"before": "previous",
"site": "sc-domain:example.com"
}
}TypeScript
Install the package in a Node 22 project when your application needs to run the report 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 report from your TypeScript application.
import { executeReport } from 'seo/mcp'
const result = await executeReport(
'compare-crawls',
{
"after": "latest",
"before": "previous",
"site": "sc-domain:example.com"
},
)
console.log(result)What to do next
Confirm that both crawls covered comparable pages before calling a difference a regression or recovery. Audit representative changes directly, then use affected URLs when the same rule spans a larger group.
- 01Audit representative regressions directly.
- 02Run affected URLs when a changed rule spans many pages.
Related reports
Find every URL affected by a technical SEO issue, inspect the crawl evidence on each page and turn one broad finding into a practical fix list.
Audit one URL for technical SEO, metadata, canonicals, schema, links and Search Console queries. See the live evidence before changing the page.
Repeat a limited crawl and compare it with the previous run to find technical SEO issues that appeared, changed or disappeared after a release.