Analyze multiple URLs with categorized SEO / GEO checks and scored results.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"octoboost-seo": {
"env": {
"OCTOBOOST_API_KEY": "your-api-key"
},
"args": [
"-y",
"octoboost-mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
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.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in marketing / analytics
MCP Server for GCP environment for interacting with various Observability APIs.
⚡ A Simple / Speedy / Secure Link Shortener with Analytics, 100% run on Cloudflare.
DataForSEO API modelcontextprotocol server
一键同步文章到多个内容平台,支持今日头条、WordPress、知乎、简书、掘金、CSDN、typecho各大平台,一次发布,多平台同步发布。解放个人生产力
MCP Security Weekly
Get CVE alerts and security updates for io.github.eugenregehr/octoboost and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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.
octoboost-mcp-server gives an MCP client three core capabilities:
list_analyzersscan_domainanalyzeIt 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.
This server is a good fit for:
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.
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.
401 for invalid or expired keys, 402 for exhausted creditslist_analyzers to verify the connection.{
"mcpServers": {
"octoboost-seo": {
"command": "npx",
"args": ["-y", "octoboost-mcp-server"],
"env": {
"OCTOBOOST_API_KEY": "your-api-key"
}
}
}
}
Common config locations:
~/Library/Application Support/Claude/claude_desktop_config.json~/.openclaw/mcp.jsonMost 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
list_analyzersReturns available analyzer keys, categories, and weights. Call this first so an agent knows what it can run.
seo, accessibility, ux, performance, and geoscan_domainCrawls 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 |