CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Geo Seo Analyzer Octoboost

eugenregehr/octoboost-mcp-server
authSTDIOregistry active
Summary

Wraps the OctoBoost SEO API into three MCP tools: list_analyzers to see what checks are available, scan_domain to crawl a site for relevant URLs, and analyze to run full audits that return structured scores instead of raw HTML. Each URL costs 3 credits and gets you an SEO score, a GEO/AEO score for AI search visibility, Core Web Vitals from CrUX, and results from 30+ analyzers across categories like performance, accessibility, and content structure. Progress notifications stream back as each URL finishes. Reach for this when you're building agent workflows that need compact audit signals without burning tokens on scraping and parsing pages yourself.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

OctoBoost SEO MCP Server

MCP Registry

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: 401 for invalid or expired keys, 402 for exhausted credits

Quick Start

  1. Get an API key from octo-boost.com.
  2. Add the server to your MCP client config.
  3. Call list_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:

  • 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, and geo
  • weights returned reflect your personal setup (see Analysis Setup below)

scan_domain

Crawls a domain and returns SEO-relevant URLs.

ParameterTypeDefaultDescription
domainstring—Domain or URL to scan
maxPagesnumberserver defaultMaximum pages to crawl (capped server-side at the batch analysis limit)
excludePatternsstring[][]URL patterns to skip
respectRobotsTxtbooleantrueHonor robots.txt
defaultLanguageOnlybooleantrueSkip 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.

ParameterTypeDescription
urlsstring[]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_analyzers always 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:

  • geoScore
  • technicalAccess
  • contentStructure
  • entityClarity
  • authoritySignals
  • citationLikelihood
  • ragReadiness
  • llmAssessment
  • whyThisMattersForAgents

Project Status

Planned next:

  • LLM-based prioritization and condensation for more compact output
  • higher-level tools such as get_fix_plan, summarize_top_opportunities and compare_urls
  • better site-level workflows built on top of crawl plus analysis
  • dedicated interface and API documentation
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

OCTOBOOST_API_KEY*secret

Your OctoBoost API key for authenticating requests to the SEO API

Registryactive
Packageoctoboost-mcp-server
TransportSTDIO
AuthRequired
UpdatedMar 23, 2026
View on GitHub