SEO priority report
Rank a mixed list of technical and content work using the evidence already collected for the project. The score helps order the queue, but it should never hide a weak or missing input.
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 startBuild a limited review queue from supported search signals.
seo refresh-priorities --project exampleWhat you get from this report
Combine Search Console opportunities and crawl evidence into a ranked SEO work list with the reason and supporting report behind every item.
- Best for
- A content team needs one queue assembled from several site data sources.
- Needs
- Search Console diagnosis and opportunity reports
- You get
- Combine Search Console opportunities and crawl evidence into a ranked SEO work list with the reason and supporting report behind every item.
- Use next
- Audit one page
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 diagnosis and opportunity reports
Provides decay, position, CTR, query overlap, and property movement evidence with shared source details.
Optional live-page verification
Checks a limited number of candidates before the workflow recommends deeper investigation.
Use a different report for these jobs
These jobs need a different report or a manual review.
You only want technical crawl fixes and do not want content or Search Console opportunities mixed into the queue.
Run top fixes against a saved crawl. It ranks crawl issue groups by rule evidence and affected scope, with sample URLs and verification guidance still attached.
You need an exact content brief for one page already selected for review.
Run content optimization for that URL. It adds the live page structure and returned query evidence needed for a focused brief. Refresh priorities orders candidates but cannot decide that a rewrite is required.
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 refresh-priorities --jsonOnce the input is valid, run the report through the report catalog.
seo reports run refresh-priorities --params '{"site":"sc-domain:example.com","days":90,"recentDays":7,"limit":10,"includeBrand":false,"verifyContent":true,"verifyLimit":5}' --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": "refresh-priorities"
}Run the report after the agent has checked and filled the input.
{
"id": "refresh-priorities",
"params": {
"site": "sc-domain:example.com",
"days": 90,
"recentDays": 7,
"limit": 10,
"includeBrand": false,
"verifyContent": true,
"verifyLimit": 5
}
}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(
'refresh-priorities',
{
"site": "sc-domain:example.com",
"days": 90,
"recentDays": 7,
"limit": 10,
"includeBrand": false,
"verifyContent": true,
"verifyLimit": 5
},
)
console.log(result)What to do next
Inspect the evidence behind the highest-ranked technical and content items before accepting their order. Update the queue when a missing input, stale crawl or page review changes the case for the work.
- 01Audit the highest-supported page.
- 02Record and measure any material change.
Related reports
Audit one URL for technical SEO, metadata, canonicals, schema, links and Search Console queries. See the live evidence before changing the page.
Build a content brief from one page, its Search Console queries and the headings or topics already present. Keep every suggestion tied to demand.
Compare matched Search Console periods around a recorded SEO change and keep releases, demand shifts and other confounders beside the result.
Sources used by this report
These primary sources define the provider data or search controls used by the result.