Skip to content

SEO Tools

import { Aside } from ‘@astrojs/starlight/components’;

ToolDescription
wp_seo_audit_siteFull site-level SEO audit
wp_get_seo_issuesList stored issues from last audit
wp_run_seo_autofix_planExecute the approval-safe autofix plan
wp_validate_seo_readinessPre-publish SEO check for a page/post
wp_get_seo_trendsSearch performance trend report
wp_import_search_performanceImport Google Search Console data
wp_audit_content_qualityContent quality score
wp_get_content_graphWeighted internal link graph
wp_suggest_internal_linksAI-suggested internal links
wp_apply_internal_linkApply an accepted link suggestion
wp_validate_internal_linksCheck all internal links for broken URLs
wp_audit_media_seoSEO audit for a media item
wp_validate_structured_dataSchema.org validation
wp_keyword_researchKeyword suggestions
1. wp_seo_audit_site → runs audit, stores issues
2. wp_get_seo_issues → review by severity
3. wp_run_seo_autofix_plan → creates approval requests for safe fixes
4. wp_list_approvals → review proposed changes
5. wp_approve_request → approve
6. wp_apply_approval → apply live
// wp_validate_seo_readiness
{"id": 42}

Returns score + checklist: title length, meta description, headings, alt text, internal links, word count.

// wp_suggest_internal_links
{"id": 42, "max_suggestions": 5}
// wp_apply_internal_link
{
"source_id": 42,
"target_id": 18,
"anchor_text": "our pricing page",
"context": "To see all plans, visit our pricing page."
}