什么是 io.github.eugenregehr/octoboost?
可同时分析多个 URL,提供分类 SEO 检查结果,并给出评分,便于快速发现优化点。
README
OctoBoost SEO MCP Server
Expose the OctoBoost SEO API as Model Context Protocol (MCP) tools so agents can audit websites with compact, structured results instead of fetching and parsing raw HTML.
Get your free API key at octo-boost.com. New accounts include free credits to try every tool.
What This Server Does
octoboost-mcp-server gives an MCP client three core capabilities:
- discover available analyzers with
list_analyzers - crawl a domain for relevant URLs with
scan_domain - run full audits with
analyze
It is built for agent workflows that need SEO and AI-visibility signals inside the reasoning loop without spending thousands of tokens on raw page content.
Who It's For
This server is a good fit for:
- developers building MCP-enabled products, assistants, or internal automation
- teams using MCP clients such as Cursor or Claude Desktop and wanting SEO tooling via config only
- AI agent workflows that need token-efficient site audits, progress updates, and structured outputs they can reason over
It is less useful if you want a general SEO learning guide or a raw HTML scraping tool. The main value here is compact audit output for automated workflows.
Why Use This Instead Of Raw Scraping?
Running SEO checks directly in an LLM context is expensive. OctoBoost moves the heavy lifting to the API and returns only the signals an agent needs to decide what to do next.
- Token-efficient: structured results instead of raw HTML
- LLM-friendly: scores, flags, and diagnostics instead of prose parsing
- Credit-aware: responses include credits used and credits remaining
- Predictable errors:
401for invalid or expired keys,402for exhausted credits
Quick Start
- Get an API key from octo-boost.com.
- Add the server to your MCP client config.
- Call
list_analyzersto verify the connection.
{
"mcpServers": {
"octoboost-seo": {
"command": "npx",
"args": ["-y", "octoboost-mcp-server"],
"env": {
"OCTOBOOST_API_KEY": "your-api-key"
}
}
}
}
Common config locations:
- Claude Desktop:
~/Library/Application Support/Claude/claude_desktop_config.json - Cursor: Cursor MCP settings
- OpenClaw:
~/.openclaw/mcp.json
Core Workflow
Most agent flows follow this pattern:
1. list_analyzers
-> learn categories and available checks
2. scan_domain { domain: "acme.com" }
-> collect relevant URLs for the audit
3. analyze { urls: [...] }
-> run a full audit with SEO score + GEO/AEO score for each URL
Tools Overview
list_analyzers
Returns available analyzer keys, categories, and weights. Call this first so an agent knows what it can run.
- no input required
- current categories include
seo,accessibility,ux,performance, andgeo - weights returned reflect your personal setup (see Analysis Setup below)
scan_domain
Crawls a domain and returns SEO-relevant URLs.
| Parameter | Type | Default | Description |
|---|---|---|---|
domain | string | — | Domain or URL to scan |
maxPages | number | server default | Maximum pages to crawl (capped server-side at the batch analysis limit) |
excludePatterns | string[] | [] | URL patterns to skip |
respectRobotsTxt | boolean | true | Honor robots.txt |
defaultLanguageOnly | boolean | true | Skip alternate-language duplicates |
analyze
Runs a full audit for one or more URLs. All 30+ analyzers run on each URL, returning an overall SEO score, per-category scores, and a GEO/AEO score for AI search visibility. URLs are processed sequentially and emit progress notifications after each one.
| Parameter | Type | Description |
|---|---|---|
urls | string[] | URLs to analyze |
Cost: 3 credits per URL.
Analysis Setup
From your dashboard at octo-boost.com/dashboard, you can configure how much each analyzer contributes to the overall score. Set a weight between 0 and 5 for any of the 30+ analyzers.
- Weight 0 — the analyzer still runs but is excluded from the overall score calculation
- Weight 1–5 — higher values give an analyzer more influence over the final score
- Changes apply immediately to all future API calls made with your key
list_analyzersalways returns your current weights, so agents can adapt their reasoning to your setup
Core Web Vitals (CrUX)
Full audits include real-user performance data (LCP, CLS, INP, FCP, TTFB) from the Chrome UX Report API at the p75 percentile — the speed 75% of actual Chrome users experienced or better. Google uses these as Search ranking signals.
If no data is returned, the result includes the exact reason (e.g. insufficient traffic, URL not in Google's dataset). This is common for low-traffic sites and does not affect the overall SEO score.
GEO/AEO Output
Full audits include a geoScore alongside the technical SEO score.
This score is meant for AI-search and agent workflows. It helps answer whether a page is easy for systems like ChatGPT, Claude, Gemini, or Perplexity to understand, extract, retrieve, and cite.
Key fields include:
geoScoretechnicalAccesscontentStructureentityClarityauthoritySignalscitationLikelihoodragReadinessllmAssessmentwhyThisMattersForAgents
Project Status
Planned next:
- LLM-based prioritization and condensation for more compact output
- higher-level tools such as
get_fix_plan,summarize_top_opportunitiesandcompare_urls - better site-level workflows built on top of crawl plus analysis
- dedicated interface and API documentation
常见问题
io.github.eugenregehr/octoboost 是什么?
可同时分析多个 URL,提供分类 SEO 检查结果,并给出评分,便于快速发现优化点。
相关 Skills
网页构建器
by anthropics
面向复杂 claude.ai HTML artifact 开发,快速初始化 React + Tailwind CSS + shadcn/ui 项目并打包为单文件 HTML,适合需要状态管理、路由或多组件交互的页面。
✎ 在 claude.ai 里做复杂网页 Artifact 很省心,多组件、状态和路由都能顺手搭起来,React、Tailwind 与 shadcn/ui 组合效率高、成品也更精致。
前端设计
by anthropics
面向组件、页面、海报和 Web 应用开发,按鲜明视觉方向生成可直接落地的前端代码与高质感 UI,适合做 landing page、Dashboard 或美化现有界面,避开千篇一律的 AI 审美。
✎ 想把页面做得既能上线又有设计感,就用前端设计:组件到整站都能产出,难得的是能避开千篇一律的 AI 味。
网页应用测试
by anthropics
用 Playwright 为本地 Web 应用编写自动化测试,支持启动开发服务器、校验前端交互、排查 UI 异常、抓取截图与浏览器日志,适合调试动态页面和回归验证。
✎ 借助 Playwright 一站式验证本地 Web 应用前端功能,调 UI 时还能同步查看日志和截图,定位问题更快。
相关 MCP Server
GitHub
编辑精选by GitHub
GitHub 是 MCP 官方参考服务器,让 Claude 直接读写你的代码仓库和 Issues。
✎ 这个参考服务器解决了开发者想让 AI 安全访问 GitHub 数据的问题,适合需要自动化代码审查或 Issue 管理的团队。但注意它只是参考实现,生产环境得自己加固安全。
Context7 文档查询
编辑精选by Context7
Context7 是实时拉取最新文档和代码示例的智能助手,让你告别过时资料。
✎ 它能解决开发者查找文档时信息滞后的问题,特别适合快速上手新库或跟进更新。不过,依赖外部源可能导致偶尔的数据延迟,建议结合官方文档使用。
by tldraw
tldraw 是让 AI 助手直接在无限画布上绘图和协作的 MCP 服务器。
✎ 这解决了 AI 只能输出文本、无法视觉化协作的痛点——想象让 Claude 帮你画流程图或白板讨论。最适合需要快速原型设计或头脑风暴的开发者。不过,目前它只是个基础连接器,你得自己搭建画布应用才能发挥全部潜力。