antigravity-seo-kit 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (135) hide show
  1. package/.agent/agent.md +96 -0
  2. package/.agent/skills/seo/SKILL.md +153 -0
  3. package/.agent/skills/seo/references/cwv-thresholds.md +108 -0
  4. package/.agent/skills/seo/references/eeat-framework.md +214 -0
  5. package/.agent/skills/seo/references/local-schema-types.md +230 -0
  6. package/.agent/skills/seo/references/local-seo-signals.md +218 -0
  7. package/.agent/skills/seo/references/maps-api-endpoints.md +160 -0
  8. package/.agent/skills/seo/references/maps-free-apis.md +176 -0
  9. package/.agent/skills/seo/references/maps-gbp-checklist.md +150 -0
  10. package/.agent/skills/seo/references/maps-geo-grid.md +154 -0
  11. package/.agent/skills/seo/references/quality-gates.md +155 -0
  12. package/.agent/skills/seo/references/schema-types.md +118 -0
  13. package/.agent/skills/seo/schema/templates.json +213 -0
  14. package/.agent/skills/seo/scripts/analyze_visual.py +217 -0
  15. package/.agent/skills/seo/scripts/capture_screenshot.py +181 -0
  16. package/.agent/skills/seo/scripts/fetch_page.py +196 -0
  17. package/.agent/skills/seo/scripts/parse_html.py +201 -0
  18. package/.agent/skills/seo-audit/SKILL.md +278 -0
  19. package/.agent/skills/seo-competitor-pages/SKILL.md +212 -0
  20. package/.agent/skills/seo-content/SKILL.md +230 -0
  21. package/.agent/skills/seo-dataforseo/SKILL.md +418 -0
  22. package/.agent/skills/seo-geo/SKILL.md +305 -0
  23. package/.agent/skills/seo-google/SKILL.md +405 -0
  24. package/.agent/skills/seo-google/assets/templates/cwv-audit-report.md +48 -0
  25. package/.agent/skills/seo-google/assets/templates/gsc-performance-report.md +44 -0
  26. package/.agent/skills/seo-google/assets/templates/indexation-status-report.md +43 -0
  27. package/.agent/skills/seo-google/references/auth-setup.md +154 -0
  28. package/.agent/skills/seo-google/references/ga4-data-api.md +184 -0
  29. package/.agent/skills/seo-google/references/indexing-api.md +107 -0
  30. package/.agent/skills/seo-google/references/keyword-planner-api.md +66 -0
  31. package/.agent/skills/seo-google/references/nlp-api.md +55 -0
  32. package/.agent/skills/seo-google/references/pagespeed-crux-api.md +204 -0
  33. package/.agent/skills/seo-google/references/rate-limits-quotas.md +75 -0
  34. package/.agent/skills/seo-google/references/search-console-api.md +156 -0
  35. package/.agent/skills/seo-google/references/supplementary-apis.md +99 -0
  36. package/.agent/skills/seo-google/references/youtube-api.md +49 -0
  37. package/.agent/skills/seo-google/scripts/crux_history.py +321 -0
  38. package/.agent/skills/seo-google/scripts/ga4_report.py +478 -0
  39. package/.agent/skills/seo-google/scripts/google_auth.py +795 -0
  40. package/.agent/skills/seo-google/scripts/google_report.py +2273 -0
  41. package/.agent/skills/seo-google/scripts/gsc_inspect.py +340 -0
  42. package/.agent/skills/seo-google/scripts/gsc_query.py +378 -0
  43. package/.agent/skills/seo-google/scripts/indexing_notify.py +313 -0
  44. package/.agent/skills/seo-google/scripts/keyword_planner.py +297 -0
  45. package/.agent/skills/seo-google/scripts/nlp_analyze.py +309 -0
  46. package/.agent/skills/seo-google/scripts/pagespeed_check.py +649 -0
  47. package/.agent/skills/seo-google/scripts/youtube_search.py +355 -0
  48. package/.agent/skills/seo-hreflang/SKILL.md +192 -0
  49. package/.agent/skills/seo-image-gen/SKILL.md +211 -0
  50. package/.agent/skills/seo-image-gen/references/cost-tracking.md +47 -0
  51. package/.agent/skills/seo-image-gen/references/gemini-models.md +200 -0
  52. package/.agent/skills/seo-image-gen/references/mcp-tools.md +115 -0
  53. package/.agent/skills/seo-image-gen/references/post-processing.md +192 -0
  54. package/.agent/skills/seo-image-gen/references/presets.md +69 -0
  55. package/.agent/skills/seo-image-gen/references/prompt-engineering.md +411 -0
  56. package/.agent/skills/seo-image-gen/references/seo-image-presets.md +137 -0
  57. package/.agent/skills/seo-image-gen/scripts/batch.py +97 -0
  58. package/.agent/skills/seo-image-gen/scripts/cost_tracker.py +191 -0
  59. package/.agent/skills/seo-image-gen/scripts/edit.py +141 -0
  60. package/.agent/skills/seo-image-gen/scripts/generate.py +149 -0
  61. package/.agent/skills/seo-image-gen/scripts/presets.py +153 -0
  62. package/.agent/skills/seo-image-gen/scripts/setup_mcp.py +151 -0
  63. package/.agent/skills/seo-image-gen/scripts/validate_setup.py +133 -0
  64. package/.agent/skills/seo-images/SKILL.md +176 -0
  65. package/.agent/skills/seo-local/SKILL.md +381 -0
  66. package/.agent/skills/seo-maps/SKILL.md +328 -0
  67. package/.agent/skills/seo-page/SKILL.md +86 -0
  68. package/.agent/skills/seo-plan/SKILL.md +118 -0
  69. package/.agent/skills/seo-plan/assets/agency.md +175 -0
  70. package/.agent/skills/seo-plan/assets/ecommerce.md +167 -0
  71. package/.agent/skills/seo-plan/assets/generic.md +144 -0
  72. package/.agent/skills/seo-plan/assets/local-service.md +160 -0
  73. package/.agent/skills/seo-plan/assets/publisher.md +153 -0
  74. package/.agent/skills/seo-plan/assets/saas.md +135 -0
  75. package/.agent/skills/seo-programmatic/SKILL.md +171 -0
  76. package/.agent/skills/seo-schema/SKILL.md +223 -0
  77. package/.agent/skills/seo-sitemap/SKILL.md +180 -0
  78. package/.agent/skills/seo-technical/SKILL.md +211 -0
  79. package/.agent/workflows/seo-audit.md +17 -0
  80. package/.agent/workflows/seo-competitor-pages.md +12 -0
  81. package/.agent/workflows/seo-content.md +14 -0
  82. package/.agent/workflows/seo-geo.md +12 -0
  83. package/.agent/workflows/seo-google.md +12 -0
  84. package/.agent/workflows/seo-hreflang.md +12 -0
  85. package/.agent/workflows/seo-images.md +13 -0
  86. package/.agent/workflows/seo-local.md +12 -0
  87. package/.agent/workflows/seo-maps.md +11 -0
  88. package/.agent/workflows/seo-page.md +13 -0
  89. package/.agent/workflows/seo-plan.md +13 -0
  90. package/.agent/workflows/seo-programmatic.md +12 -0
  91. package/.agent/workflows/seo-schema.md +11 -0
  92. package/.agent/workflows/seo-sitemap.md +9 -0
  93. package/.agent/workflows/seo-technical.md +18 -0
  94. package/LICENSE +88 -0
  95. package/README.md +122 -0
  96. package/bin/cli.js +117 -0
  97. package/docs/ARCHITECTURE.md +218 -0
  98. package/docs/COMMANDS.md +184 -0
  99. package/docs/INSTALLATION.md +100 -0
  100. package/docs/MCP-INTEGRATION.md +153 -0
  101. package/docs/TROUBLESHOOTING.md +151 -0
  102. package/docs/superpowers/plans/2026-03-13-github-audit-fixes.md +511 -0
  103. package/extensions/banana/README.md +95 -0
  104. package/extensions/banana/docs/BANANA-SETUP.md +86 -0
  105. package/extensions/banana/install.sh +170 -0
  106. package/extensions/banana/references/cost-tracking.md +47 -0
  107. package/extensions/banana/references/gemini-models.md +200 -0
  108. package/extensions/banana/references/mcp-tools.md +115 -0
  109. package/extensions/banana/references/post-processing.md +192 -0
  110. package/extensions/banana/references/presets.md +69 -0
  111. package/extensions/banana/references/prompt-engineering.md +411 -0
  112. package/extensions/banana/references/seo-image-presets.md +137 -0
  113. package/extensions/banana/scripts/batch.py +97 -0
  114. package/extensions/banana/scripts/cost_tracker.py +191 -0
  115. package/extensions/banana/scripts/edit.py +141 -0
  116. package/extensions/banana/scripts/generate.py +149 -0
  117. package/extensions/banana/scripts/presets.py +153 -0
  118. package/extensions/banana/scripts/setup_mcp.py +151 -0
  119. package/extensions/banana/scripts/validate_setup.py +133 -0
  120. package/extensions/banana/uninstall.sh +43 -0
  121. package/extensions/dataforseo/README.md +169 -0
  122. package/extensions/dataforseo/docs/DATAFORSEO-SETUP.md +74 -0
  123. package/extensions/dataforseo/field-config.json +280 -0
  124. package/extensions/dataforseo/install.ps1 +110 -0
  125. package/extensions/dataforseo/install.sh +161 -0
  126. package/extensions/dataforseo/uninstall.ps1 +35 -0
  127. package/extensions/dataforseo/uninstall.sh +39 -0
  128. package/lib/api.js +190 -0
  129. package/lib/fingerprint.js +68 -0
  130. package/lib/installer.js +486 -0
  131. package/lib/utils.js +254 -0
  132. package/package.json +40 -0
  133. package/pyproject.toml +11 -0
  134. package/requirements-google.txt +15 -0
  135. package/requirements.txt +11 -0
@@ -0,0 +1,230 @@
1
+ ---
2
+ name: seo-content
3
+ description: >
4
+ Content quality and E-E-A-T analysis with AI citation readiness assessment.
5
+ Use when user says "content quality", "E-E-A-T", "content analysis",
6
+ "readability check", "thin content", or "content audit".
7
+ ---
8
+
9
+ # Content Quality & E-E-A-T Analysis
10
+
11
+ ## E-E-A-T Framework (updated Sept 2025 QRG)
12
+
13
+ Read `seo/references/eeat-framework.md` for full criteria.
14
+
15
+ ### Experience (first-hand signals)
16
+ - Original research, case studies, before/after results
17
+ - Personal anecdotes, process documentation
18
+ - Unique data, proprietary insights
19
+ - Photos/videos from direct experience
20
+
21
+ ### Expertise
22
+ - Author credentials, certifications, bio
23
+ - Professional background relevant to topic
24
+ - Technical depth appropriate for audience
25
+ - Accurate, well-sourced claims
26
+
27
+ ### Authoritativeness
28
+ - External citations, backlinks from authoritative sources
29
+ - Brand mentions, industry recognition
30
+ - Published in recognized outlets
31
+ - Cited by other experts
32
+
33
+ ### Trustworthiness
34
+ - Contact information, physical address
35
+ - Privacy policy, terms of service
36
+ - Customer testimonials, reviews
37
+ - Date stamps, transparent corrections
38
+ - Secure site (HTTPS)
39
+
40
+ ## Content Metrics
41
+
42
+ ### Word Count Analysis
43
+ Compare against page type minimums:
44
+ | Page Type | Minimum |
45
+ |-----------|---------|
46
+ | Homepage | 500 |
47
+ | Service page | 800 |
48
+ | Blog post | 1,500 |
49
+ | Product page | 300+ (400+ for complex products) |
50
+ | Location page | 500-600 |
51
+
52
+ > **Important:** These are **topical coverage floors**, not targets. Google has confirmed word count is NOT a direct ranking factor. The goal is comprehensive topical coverage; a 500-word page that thoroughly answers the query will outrank a 2,000-word page that doesn't. Use these as guidelines for adequate coverage depth, not rigid requirements.
53
+
54
+ ### Readability
55
+ - Flesch Reading Ease: target 60-70 for general audience
56
+
57
+ > **Note:** Flesch Reading Ease is a useful proxy for content accessibility but is NOT a direct Google ranking factor. John Mueller has confirmed Google does not use basic readability scores for ranking. Yoast deprioritized Flesch scores in v19.3. Use readability analysis as a content quality indicator, not as an SEO metric to optimize directly.
58
+ - Grade level: match target audience
59
+ - Sentence length: average 15-20 words
60
+ - Paragraph length: 2-4 sentences
61
+
62
+ ### Keyword Optimization
63
+ - Primary keyword in title, H1, first 100 words
64
+ - Natural density (1-3%)
65
+ - Semantic variations present
66
+ - No keyword stuffing
67
+
68
+ ### Content Structure
69
+ - Logical heading hierarchy (H1 -> H2 -> H3)
70
+ - Scannable sections with descriptive headings
71
+ - Bullet/numbered lists where appropriate
72
+ - Table of contents for long-form content
73
+
74
+ ### Multimedia
75
+ - Relevant images with proper alt text
76
+ - Videos where appropriate
77
+ - Infographics for complex data
78
+ - Charts/graphs for statistics
79
+
80
+ ### Internal Linking
81
+ - 3-5 relevant internal links per 1000 words
82
+ - Descriptive anchor text
83
+ - Links to related content
84
+ - No orphan pages
85
+
86
+ ### External Linking
87
+ - Cite authoritative sources
88
+ - Open in new tab for user experience
89
+ - Reasonable count (not excessive)
90
+
91
+ ## AI Content Assessment (Sept 2025 QRG addition)
92
+
93
+ Google's raters now formally assess whether content appears AI-generated.
94
+
95
+ ### Acceptable AI Content
96
+ - Demonstrates genuine E-E-A-T
97
+ - Provides unique value
98
+ - Has human oversight and editing
99
+ - Contains original insights
100
+
101
+ ### Low-Quality AI Content Markers
102
+ - Generic phrasing, lack of specificity
103
+ - No original insight
104
+ - Repetitive structure across pages
105
+ - No author attribution
106
+ - Factual inaccuracies
107
+
108
+ > **Helpful Content System (March 2024):** The Helpful Content System was merged into Google's core ranking algorithm during the March 2024 core update. It no longer operates as a standalone classifier. Helpfulness signals are now weighted within every core update. The same principles apply (people-first content, demonstrating E-E-A-T, satisfying user intent), but enforcement is continuous rather than through separate HCU updates.
109
+
110
+ ## AI Citation Readiness (GEO signals)
111
+
112
+ Optimize for AI search engines (ChatGPT, Perplexity, Google AI Overviews):
113
+
114
+ - Clear, quotable statements with statistics/facts
115
+ - Structured data (especially for data points)
116
+ - Strong heading hierarchy (H1->H2->H3 flow)
117
+ - Answer-first formatting for key questions
118
+ - Tables and lists for comparative data
119
+ - Clear attribution and source citations
120
+
121
+ ### AI Search Visibility & GEO (2025-2026)
122
+
123
+ **Google AI Mode** launched publicly in May 2025 as a separate tab in Google Search, available in 180+ countries. Unlike AI Overviews (which appear above organic results), AI Mode provides a fully conversational search experience with **zero organic blue links**, making AI citation the only visibility mechanism.
124
+
125
+ **Key optimization strategies for AI citation:**
126
+ - **Structured answers:** Clear question-answer formats, definition patterns, and step-by-step instructions that AI systems can extract and cite
127
+ - **First-party data:** Original research, statistics, case studies, and unique datasets are highly cited by AI systems
128
+ - **Schema markup:** Article, FAQ (for non-Google AI platforms), and structured content schemas help AI systems parse and attribute content
129
+ - **Topical authority:** AI systems preferentially cite sources that demonstrate deep expertise. Build content clusters, not isolated pages
130
+ - **Entity clarity:** Ensure brand, authors, and key concepts are clearly defined with structured data (Organization, Person schema)
131
+ - **Multi-platform tracking:** Monitor visibility across Google AI Overviews, AI Mode, ChatGPT, Perplexity, and Bing Copilot, not just traditional rankings. Treat AI citation as a standalone KPI alongside organic rankings and traffic.
132
+
133
+ **Generative Engine Optimization (GEO):**
134
+ GEO is the emerging discipline of optimizing content specifically for AI-generated answers. Key GEO signals include: quotability (clear, concise extractable facts), attribution (source citations within your content), structure (well-organized heading hierarchy), and freshness (regularly updated data). Cross-reference the `seo-geo` skill for detailed GEO workflows.
135
+
136
+ ## Content Freshness
137
+
138
+ - Publication date visible
139
+ - Last updated date if content has been revised
140
+ - Flag content older than 12 months without update for fast-changing topics
141
+
142
+ ## Output
143
+
144
+ ### Content Quality Score: XX/100
145
+
146
+ ### E-E-A-T Breakdown
147
+ | Factor | Score | Key Signals |
148
+ |--------|-------|-------------|
149
+ | Experience | XX/25 | ... |
150
+ | Expertise | XX/25 | ... |
151
+ | Authoritativeness | XX/25 | ... |
152
+ | Trustworthiness | XX/25 | ... |
153
+
154
+ ### AI Citation Readiness: XX/100
155
+
156
+ ### Issues Found
157
+ ### Recommendations
158
+
159
+ ## DataForSEO Integration (Optional)
160
+
161
+ If DataForSEO MCP tools are available, use `kw_data_google_ads_search_volume` for real keyword volume data, `dataforseo_labs_bulk_keyword_difficulty` for difficulty scores, `dataforseo_labs_search_intent` for intent classification, and `content_analysis_summary` for content quality analysis.
162
+
163
+ ## Error Handling
164
+
165
+ | Scenario | Action |
166
+ |----------|--------|
167
+ | URL unreachable (DNS failure, connection refused) | Report the error clearly. Do not guess page content. Suggest the user verify the URL and try again. |
168
+ | Content behind paywall (402/403, login wall) | Report that the content is not publicly accessible. Analyze only the visible portion (meta tags, headers) and note the limitation. |
169
+ | Thin content (fewer than 100 words retrievable) | Report the findings as-is rather than guessing. Flag the page as potentially JavaScript-rendered or gated, and suggest the user provide the full text directly. |
170
+
171
+ ## Specialist Role Instructions
172
+
173
+ When operating as a specialist during audits:
174
+
175
+ You are a Content Quality specialist following Google's September 2025 Quality Rater Guidelines.
176
+
177
+ When given content to analyze:
178
+
179
+ 1. Assess E-E-A-T signals (Experience, Expertise, Authoritativeness, Trustworthiness)
180
+ 2. Check word count against page type minimums
181
+ 3. Calculate readability metrics
182
+ 4. Evaluate keyword optimization (natural, not stuffed)
183
+ 5. Assess AI citation readiness (quotable facts, structured data, clear hierarchy)
184
+ 6. Check content freshness and update signals
185
+ 7. Flag potential AI-generated content quality issues per Sept 2025 QRG criteria
186
+
187
+ ## E-E-A-T Scoring
188
+
189
+ | Factor | Weight | What to Look For |
190
+ |--------|--------|------------------|
191
+ | Experience | 20% | First-hand signals, original content, case studies |
192
+ | Expertise | 25% | Author credentials, technical accuracy |
193
+ | Authoritativeness | 25% | External recognition, citations, reputation |
194
+ | Trustworthiness | 30% | Contact info, transparency, security |
195
+
196
+ ## Content Minimums
197
+
198
+ | Page Type | Min Words |
199
+ |-----------|-----------|
200
+ | Homepage | 500 |
201
+ | Service page | 800 |
202
+ | Blog post | 1,500 |
203
+ | Product page | 300+ (400+ for complex products) |
204
+ | Location page | 500-600 |
205
+
206
+ > **Note:** These are topical coverage floors, not targets. Google confirms word count is NOT a direct ranking factor. The goal is comprehensive topical coverage.
207
+
208
+ ## AI Content Assessment (Sept 2025 QRG)
209
+
210
+ AI content is acceptable IF it demonstrates genuine E-E-A-T. Flag these markers of low-quality AI content:
211
+ - Generic phrasing, lack of specificity
212
+ - No original insight or unique perspective
213
+ - No first-hand experience signals
214
+ - Factual inaccuracies
215
+ - Repetitive structure across pages
216
+
217
+ > **Helpful Content System (March 2024):** The Helpful Content System was merged into Google's core ranking algorithm during the March 2024 core update. It no longer operates as a standalone classifier. Helpfulness signals are now evaluated within every core update.
218
+
219
+ ## Cross-Skill Delegation
220
+
221
+ - For evaluating programmatically generated pages, defer to the `seo-programmatic` sub-skill.
222
+ - For comparison page content standards, see `seo-competitor-pages`.
223
+
224
+ ## Output Format
225
+
226
+ Provide:
227
+ - Content quality score (0-100)
228
+ - E-E-A-T breakdown with scores per factor
229
+ - AI citation readiness score
230
+ - Specific improvement recommendations
@@ -0,0 +1,418 @@
1
+ ---
2
+ name: seo-dataforseo
3
+ description: >
4
+ Live SEO data via DataForSEO MCP server. SERP analysis (Google, Bing, Yahoo,
5
+ YouTube), keyword research (volume, difficulty, intent, trends), backlink
6
+ profiles, on-page analysis (Lighthouse, content parsing), competitor analysis,
7
+ content analysis, business listings, AI visibility (ChatGPT scraper, LLM
8
+ mention tracking), and domain analytics. Requires DataForSEO extension
9
+ installed. Use when user says "dataforseo", "live SERP", "keyword volume",
10
+ "backlink data", "competitor data", "AI visibility check", "LLM mentions",
11
+ or "real search data".
12
+ ---
13
+
14
+ # DataForSEO: Live SEO Data (Extension)
15
+
16
+ Live search data via the DataForSEO MCP server. Provides real-time SERP results,
17
+ keyword metrics, backlink profiles, on-page analysis, content analysis, business
18
+ listings, AI visibility checking, and LLM mention tracking across
19
+ 9 API modules with 79 MCP tools.
20
+
21
+ ## Prerequisites
22
+
23
+ This skill requires the DataForSEO extension to be installed:
24
+ ```bash
25
+ ./extensions/dataforseo/install.sh
26
+ ```
27
+
28
+ **Check availability:** Before using any DataForSEO tool, verify the MCP server
29
+ is connected by checking if `serp_organic_live_advanced` or any DataForSEO tool
30
+ is available. If tools are not available, inform the user the extension is not
31
+ installed and provide install instructions.
32
+
33
+ ## API Credit Awareness
34
+
35
+ DataForSEO charges per API call. Be efficient:
36
+ - Prefer bulk endpoints over multiple single calls
37
+ - Use default parameters (US, English) unless user specifies otherwise
38
+ - Cache results mentally within a session; don't re-fetch the same data
39
+ - Warn user before running expensive operations (full backlink crawls, large keyword lists)
40
+
41
+ ## Quick Reference
42
+
43
+ | Command | What it does |
44
+ |---------|-------------|
45
+ | `/seo dataforseo serp <keyword>` | Google organic SERP results |
46
+ | `/seo dataforseo serp-youtube <keyword>` | YouTube search results |
47
+ | `/seo dataforseo youtube <video_id>` | YouTube video deep analysis |
48
+ | `/seo dataforseo keywords <seed>` | Keyword ideas and suggestions |
49
+ | `/seo dataforseo volume <keywords>` | Search volume for keywords |
50
+ | `/seo dataforseo difficulty <keywords>` | Keyword difficulty scores |
51
+ | `/seo dataforseo intent <keywords>` | Search intent classification |
52
+ | `/seo dataforseo trends <keyword>` | Google Trends data |
53
+ | `/seo dataforseo backlinks <domain>` | Full backlink profile |
54
+ | `/seo dataforseo competitors <domain>` | Competitor domain analysis |
55
+ | `/seo dataforseo ranked <domain>` | Ranked keywords for domain |
56
+ | `/seo dataforseo intersection <domains>` | Keyword/backlink overlap |
57
+ | `/seo dataforseo traffic <domains>` | Bulk traffic estimation |
58
+ | `/seo dataforseo subdomains <domain>` | Subdomains with ranking data |
59
+ | `/seo dataforseo top-searches <domain>` | Top queries mentioning domain |
60
+ | `/seo dataforseo onpage <url>` | On-page analysis (Lighthouse + parsing) |
61
+ | `/seo dataforseo tech <domain>` | Technology stack detection |
62
+ | `/seo dataforseo whois <domain>` | WHOIS registration data |
63
+ | `/seo dataforseo content <keyword/url>` | Content analysis and trends |
64
+ | `/seo dataforseo listings <keyword>` | Business listings search |
65
+ | `/seo dataforseo ai-scrape <query>` | ChatGPT web scraper for GEO |
66
+ | `/seo dataforseo ai-mentions <keyword>` | LLM mention tracking for GEO |
67
+
68
+ ---
69
+
70
+ ## SERP Analysis
71
+
72
+ ### `/seo dataforseo serp <keyword>`
73
+
74
+ Fetch live Google organic search results.
75
+
76
+ **MCP tools:** `serp_organic_live_advanced`
77
+
78
+ **Default parameters:** location_code=2840 (US), language_code=en, device=desktop, depth=100
79
+
80
+ **Also supports:** The `serp_organic_live_advanced` tool supports Google, Bing, and Yahoo via the `se` parameter. Specify "bing" or "yahoo" to switch search engines.
81
+
82
+ **Output:** Rank, URL, title, description, domain, featured snippets, AI overview references, People Also Ask.
83
+
84
+ ### `/seo dataforseo serp-youtube <keyword>`
85
+
86
+ Fetch YouTube search results. Valuable for GEO. YouTube mentions correlate most strongly with AI citations.
87
+
88
+ **MCP tools:** `serp_youtube_organic_live_advanced`
89
+
90
+ **Output:** Video title, channel, views, upload date, description, URL.
91
+
92
+ ### `/seo dataforseo youtube <video_id>`
93
+
94
+ Deep analysis of a specific YouTube video: info, comments, and subtitles. YouTube mentions have the strongest correlation (0.737) with AI visibility, making this critical for GEO analysis.
95
+
96
+ **MCP tools:** `serp_youtube_video_info_live_advanced`, `serp_youtube_video_comments_live_advanced`, `serp_youtube_video_subtitles_live_advanced`
97
+
98
+ **Parameters:** video_id (the YouTube video ID, e.g., "dQw4w9WgXcQ")
99
+
100
+ **Output:** Video metadata (title, channel, views, likes, description), top comments with engagement, subtitle/transcript text.
101
+
102
+ ---
103
+
104
+ ## Keyword Research
105
+
106
+ ### `/seo dataforseo keywords <seed>`
107
+
108
+ Generate keyword ideas, suggestions, and related terms from a seed keyword.
109
+
110
+ **MCP tools:** `dataforseo_labs_google_keyword_ideas`, `dataforseo_labs_google_keyword_suggestions`, `dataforseo_labs_google_related_keywords`
111
+
112
+ **Default parameters:** location_code=2840 (US), language_code=en, limit=50
113
+
114
+ **Output:** Keyword, search volume, CPC, competition level, keyword difficulty, trend.
115
+
116
+ ### `/seo dataforseo volume <keywords>`
117
+
118
+ Get search volume and metrics for a list of keywords.
119
+
120
+ **MCP tools:** `kw_data_google_ads_search_volume`
121
+
122
+ **Parameters:** keywords (array, comma-separated), location_code, language_code
123
+
124
+ **Output:** Keyword, monthly search volume, CPC, competition, monthly trend data.
125
+
126
+ ### `/seo dataforseo difficulty <keywords>`
127
+
128
+ Calculate keyword difficulty scores for ranking competitiveness.
129
+
130
+ **MCP tools:** `dataforseo_labs_bulk_keyword_difficulty`
131
+
132
+ **Parameters:** keywords (array), location_code, language_code
133
+
134
+ **Output:** Keyword, difficulty score (0-100), interpretation (Easy/Medium/Hard/Very Hard).
135
+
136
+ ### `/seo dataforseo intent <keywords>`
137
+
138
+ Classify keywords by user search intent.
139
+
140
+ **MCP tools:** `dataforseo_labs_search_intent`
141
+
142
+ **Parameters:** keywords (array), location_code, language_code
143
+
144
+ **Output:** Keyword, intent type (informational, navigational, commercial, transactional), confidence score.
145
+
146
+ ### `/seo dataforseo trends <keyword>`
147
+
148
+ Analyze keyword trends over time using Google Trends data.
149
+
150
+ **MCP tools:** `kw_data_google_trends_explore`
151
+
152
+ **Parameters:** keywords (array), location_code, date_from, date_to, language_code
153
+
154
+ **Output:** Keyword, time series data, trend direction, seasonality signals.
155
+
156
+ ---
157
+
158
+ ## Domain & Competitor Analysis
159
+
160
+ ### `/seo dataforseo backlinks <domain>`
161
+
162
+ Comprehensive backlink profile analysis.
163
+
164
+ **MCP tools:** `backlinks_summary`, `backlinks_backlinks`, `backlinks_anchors`, `backlinks_referring_domains`, `backlinks_bulk_spam_score`, `backlinks_timeseries_summary`
165
+
166
+ **Default parameters:** limit=100 per sub-call
167
+
168
+ **Output:** Total backlinks, referring domains, domain rank, spam score, top anchors, new/lost backlinks over time, dofollow ratio, top referring domains.
169
+
170
+ ### `/seo dataforseo competitors <domain>`
171
+
172
+ Identify competing domains and estimate traffic.
173
+
174
+ **MCP tools:** `dataforseo_labs_google_competitors_domain`, `dataforseo_labs_google_domain_rank_overview`, `dataforseo_labs_bulk_traffic_estimation`
175
+
176
+ **Output:** Competitor domains, keyword overlap %, estimated traffic, domain rank, common keywords.
177
+
178
+ ### `/seo dataforseo ranked <domain>`
179
+
180
+ List keywords a domain ranks for with positions and page data.
181
+
182
+ **MCP tools:** `dataforseo_labs_google_ranked_keywords`, `dataforseo_labs_google_relevant_pages`
183
+
184
+ **Default parameters:** limit=100, location_code=2840
185
+
186
+ **Output:** Keyword, position, URL, search volume, traffic share, SERP features.
187
+
188
+ ### `/seo dataforseo intersection <domain1> <domain2> [...]`
189
+
190
+ Find shared keywords and backlink sources across 2-20 domains.
191
+
192
+ **MCP tools:** `dataforseo_labs_google_domain_intersection`, `backlinks_domain_intersection`
193
+
194
+ **Parameters:** domains (2-20 array)
195
+
196
+ **Output:** Shared keywords with positions per domain, shared backlink sources, unique keywords per domain.
197
+
198
+ ### `/seo dataforseo traffic <domains>`
199
+
200
+ Estimate organic search traffic for one or more domains.
201
+
202
+ **MCP tools:** `dataforseo_labs_bulk_traffic_estimation`
203
+
204
+ **Parameters:** domains (array)
205
+
206
+ **Output:** Domain, estimated organic traffic, estimated traffic cost, top keywords.
207
+
208
+ ### `/seo dataforseo subdomains <domain>`
209
+
210
+ Enumerate subdomains with their ranking data and traffic estimates.
211
+
212
+ **MCP tools:** `dataforseo_labs_google_subdomains`
213
+
214
+ **Parameters:** target (domain), location_code, language_code
215
+
216
+ **Output:** Subdomain, ranked keywords count, estimated traffic, organic cost.
217
+
218
+ ### `/seo dataforseo top-searches <domain>`
219
+
220
+ Find the most popular search queries that mention a specific domain in results.
221
+
222
+ **MCP tools:** `dataforseo_labs_google_top_searches`
223
+
224
+ **Parameters:** target (domain), location_code, language_code
225
+
226
+ **Output:** Query, search volume, domain position, SERP features, traffic share.
227
+
228
+ ---
229
+
230
+ ## Technical / On-Page
231
+
232
+ ### `/seo dataforseo onpage <url>`
233
+
234
+ Run on-page analysis including Lighthouse audit and content parsing.
235
+
236
+ **MCP tools:** `on_page_instant_pages`, `on_page_content_parsing`, `on_page_lighthouse`
237
+
238
+ **Usage:**
239
+ - `on_page_instant_pages`:Quick page analysis (status codes, meta tags, content size, page timing, broken links, on-page checks)
240
+ - `on_page_content_parsing`:Extract and parse page content (plain text, word count, structure)
241
+ - `on_page_lighthouse`:Full Lighthouse audit (performance score, accessibility, best practices, SEO, Core Web Vitals)
242
+
243
+ **Output:** Pages crawled, status codes, meta tags, titles, content size, load times, Lighthouse scores, broken links, resource analysis.
244
+
245
+ ### `/seo dataforseo tech <domain>`
246
+
247
+ Detect technologies used on a domain.
248
+
249
+ **MCP tools:** `domain_analytics_technologies_domain_technologies`
250
+
251
+ **Output:** Technology name, version, category (CMS, analytics, CDN, framework, etc.).
252
+
253
+ ### `/seo dataforseo whois <domain>`
254
+
255
+ Retrieve WHOIS registration data.
256
+
257
+ **MCP tools:** `domain_analytics_whois_overview`
258
+
259
+ **Output:** Registrar, creation date, expiration date, nameservers, registrant info (if public).
260
+
261
+ ---
262
+
263
+ ## Content & Business Data
264
+
265
+ ### `/seo dataforseo content <keyword/url>`
266
+
267
+ Analyze content quality, search for content by topic, and track phrase trends.
268
+
269
+ **MCP tools:** `content_analysis_search`, `content_analysis_summary`, `content_analysis_phrase_trends`
270
+
271
+ **Parameters:** keyword (for search/trends) or URL (for summary)
272
+
273
+ **Output:** Content matches with quality scores, sentiment analysis, readability metrics, phrase trend data over time.
274
+
275
+ ### `/seo dataforseo listings <keyword>`
276
+
277
+ Search business listings for local SEO competitive analysis.
278
+
279
+ **MCP tools:** `business_data_business_listings_search`
280
+
281
+ **Parameters:** keyword, location (optional)
282
+
283
+ **Output:** Business name, description, category, address, phone, domain, rating, review count, claimed status.
284
+
285
+ ---
286
+
287
+ ## AI Visibility / GEO
288
+
289
+ ### `/seo dataforseo ai-scrape <query>`
290
+
291
+ Scrape what ChatGPT web search returns for a query. Real GEO visibility check: see which sources ChatGPT cites for your target keywords.
292
+
293
+ **MCP tools:** `ai_optimization_chat_gpt_scraper`
294
+
295
+ **Parameters:** query, location_code (optional), language_code (optional). Use `ai_optimization_chat_gpt_scraper_locations` to look up available locations.
296
+
297
+ **Output:** ChatGPT response content, cited sources/URLs, referenced domains.
298
+
299
+ ### `/seo dataforseo ai-mentions <keyword>`
300
+
301
+ Track how LLMs mention brands, domains, and topics. Critical for GEO. Measures actual AI visibility across multiple LLM platforms.
302
+
303
+ **MCP tools:** `ai_opt_llm_ment_search`, `ai_opt_llm_ment_top_domains`, `ai_opt_llm_ment_top_pages`, `ai_opt_llm_ment_agg_metrics`
304
+
305
+ **Parameters:** keyword, location_code (optional), language_code (optional). Use `ai_opt_llm_ment_loc_and_lang` for available locations/languages and `ai_optimization_llm_models` for supported LLM models.
306
+
307
+ **Workflow:**
308
+ 1. Search LLM mentions with `ai_opt_llm_ment_search` (find mentions of a brand/keyword across LLM responses)
309
+ 2. Get top cited domains with `ai_opt_llm_ment_top_domains` (which domains are most cited for this topic)
310
+ 3. Get top cited pages with `ai_opt_llm_ment_top_pages` (which specific pages are most cited)
311
+ 4. Get aggregate metrics with `ai_opt_llm_ment_agg_metrics` (overall mention volume, trends)
312
+
313
+ **Output:** LLM mention count, top cited domains with frequency, top cited pages, mention trends over time, cross-platform visibility scores.
314
+
315
+ **Advanced:** Use `ai_opt_llm_ment_cross_agg_metrics` for cross-model comparison (how mentions differ across ChatGPT, Claude, Perplexity, etc.).
316
+
317
+ ---
318
+
319
+ ## Available Utility Tools
320
+
321
+ These DataForSEO tools are available for internal use by the agent but do not have dedicated commands:
322
+
323
+ - `serp_locations`:Location code lookups for SERP queries
324
+ - `serp_youtube_locations`:Location code lookups for YouTube queries
325
+ - `kw_data_google_ads_locations`:Location lookups for keyword data
326
+ - `kw_data_dfs_trends_demography`:Demographic data for trend analysis
327
+ - `kw_data_dfs_trends_subregion_interests`:Subregion interest data for trends
328
+ - `kw_data_dfs_trends_explore`:DFS proprietary trends data
329
+ - `kw_data_google_trends_categories`:Google Trends category lookups
330
+ - `dataforseo_labs_google_keyword_overview`:Quick keyword metrics overview
331
+ - `dataforseo_labs_google_historical_serp`:Historical SERP results for a keyword
332
+ - `dataforseo_labs_google_serp_competitors`:Competitors for a specific SERP
333
+ - `dataforseo_labs_google_keywords_for_site`:Keywords a site ranks for (alternative to ranked)
334
+ - `dataforseo_labs_google_page_intersection`:Page-level intersection analysis
335
+ - `dataforseo_labs_google_historical_rank_overview`:Historical domain rank data
336
+ - `dataforseo_labs_google_historical_keyword_data`:Historical keyword metrics
337
+ - `dataforseo_labs_available_filters`:Available filter options for Labs endpoints
338
+ - `backlinks_competitors`:Find domains with similar backlink profiles
339
+ - `backlinks_bulk_backlinks`:Bulk backlink counts for multiple targets
340
+ - `backlinks_bulk_new_lost_referring_domains`:Bulk new/lost referring domains
341
+ - `backlinks_bulk_new_lost_backlinks`:Bulk new/lost backlinks
342
+ - `backlinks_bulk_ranks`:Bulk rank overview for multiple targets
343
+ - `backlinks_bulk_referring_domains`:Bulk referring domain counts
344
+ - `backlinks_domain_pages_summary`:Summary of pages on a domain
345
+ - `backlinks_domain_pages`:List pages on a domain with backlink data
346
+ - `backlinks_page_intersection`:Shared backlink sources at page level
347
+ - `backlinks_referring_networks`:Referring network analysis
348
+ - `backlinks_timeseries_new_lost_summary`:Track new/lost backlinks over time
349
+ - `backlinks_bulk_pages_summary`:Bulk page summaries
350
+ - `backlinks_available_filters`:Available filter options for Backlinks endpoints
351
+ - `domain_analytics_whois_available_filters`:WHOIS filter options
352
+ - `domain_analytics_technologies_available_filters`:Technology detection filter options
353
+ - `ai_opt_kw_data_loc_and_lang`:AI optimization keyword data locations/languages
354
+ - `ai_optimization_keyword_data_search_volume`:AI-specific keyword volume data
355
+ - `ai_optimization_llm_response`:Direct LLM response analysis
356
+ - `ai_optimization_llm_mentions_filters`:Available filters for LLM mentions
357
+ - `ai_optimization_chat_gpt_scraper_locations`:Available locations for ChatGPT scraper
358
+
359
+ ## Cross-Skill Integration
360
+
361
+ When DataForSEO MCP tools are available, other seo-kit skills can leverage live data:
362
+
363
+ - **seo-audit**: Activate `seo-dataforseo` skill for real SERP, backlink, on-page, and listings data
364
+ - **seo-technical**:Use `on_page_instant_pages` / `on_page_lighthouse` for real crawl data, `domain_analytics_technologies_domain_technologies` for stack detection
365
+ - **seo-content**:Use `kw_data_google_ads_search_volume`, `dataforseo_labs_bulk_keyword_difficulty`, `dataforseo_labs_search_intent` for real keyword metrics, `content_analysis_summary` for content quality
366
+ - **seo-page**:Use `serp_organic_live_advanced` for real SERP positions, `backlinks_summary` for link data
367
+ - **seo-geo**:Use `ai_optimization_chat_gpt_scraper` for real ChatGPT visibility, `ai_opt_llm_ment_search` for LLM mention tracking
368
+ - **seo-plan**:Use `dataforseo_labs_google_competitors_domain`, `dataforseo_labs_google_domain_intersection`, `dataforseo_labs_bulk_traffic_estimation` for real competitive intelligence
369
+
370
+ ## Error Handling
371
+
372
+ - **MCP server not connected**: Report that DataForSEO extension is not installed or MCP server is unreachable. Suggest running `./extensions/dataforseo/install.sh`
373
+ - **API authentication failed**: Report invalid credentials. Suggest checking DataForSEO API login/password in MCP config
374
+ - **Rate limit exceeded**: Report the limit hit and suggest waiting before retrying
375
+ - **No results returned**: Report "no data found" for the query rather than guessing. Suggest broadening the query or checking location/language codes
376
+ - **Invalid location code**: Report the error and suggest using the locations lookup tool to find the correct code
377
+
378
+ ## Output Formatting
379
+
380
+ Match existing seo-kit output patterns:
381
+ - Use tables for comparative data
382
+ - Prioritize issues as Critical > High > Medium > Low
383
+ - Include specific, actionable recommendations
384
+ - Show scores as XX/100 where applicable
385
+ - Note data source as "DataForSEO (live)" to distinguish from static analysis
386
+
387
+ ## Specialist Role Instructions
388
+
389
+ When operating as a specialist during audits:
390
+
391
+ You are a DataForSEO data analyst. When delegated tasks during an SEO audit or analysis:
392
+
393
+ 1. Check that DataForSEO MCP tools are available before attempting calls
394
+ 2. Use the most efficient tool combination for the requested data
395
+ 3. Apply default parameters: location_code=2840 (US), language_code=en unless specified
396
+ 4. Format output to match seo-kit conventions (tables, priority levels, scores)
397
+
398
+ ### Efficient Tool Usage
399
+
400
+ - **Prefer bulk endpoints** over multiple single calls to minimize API credits
401
+ - **Don't re-fetch** data already retrieved in the same session
402
+ - **Warn before expensive operations** (full backlink crawls, large keyword lists)
403
+ - **Use limits**: default to limit=100 for list endpoints unless user needs more
404
+
405
+ ### Error Handling
406
+
407
+ - If a DataForSEO tool returns an error, report the error clearly to the user
408
+ - If credentials are invalid, suggest running the extension installer again
409
+ - If a module is not enabled, note which module is needed
410
+
411
+ ### Output Format
412
+
413
+ Match existing seo-kit patterns:
414
+ - Tables for comparative data
415
+ - Scores as XX/100
416
+ - Priority: Critical > High > Medium > Low
417
+ - Note data source as "DataForSEO (live)" to distinguish from static HTML analysis
418
+ - Include timestamps for time-sensitive data (SERP positions, backlink counts)