Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables AI assistants to analyze Screaming Frog SEO Spider crawl data through tool calls, supporting audits for broken links, redirects, indexability, and more.

README.md

Screaming Frog MCP Server

MCP server that exposes Screaming Frog SEO Spider crawl data as tool calls for any MCP-compatible AI assistant.

Built on top of the screamingfrog Python library.

Requirements

  • Python 3.10+
  • Java runtime (for .dbseospider files with Derby backend)
  • Screaming Frog SEO Spider installed (optional, for .seospider conversion)

Installation

git clone https://github.com/acamolese/screaming-frog-mcp.git
cd screaming-frog-mcp
pipx install -e .

Or with pip in a virtual environment:

pip install -e .

After installation, find the full path to the command:

which screaming-frog-mcp

You will need this path for the configuration below (typically ~/.local/bin/screaming-frog-mcp when installed via pipx).

Configuration

The MCP server needs to be registered in the config file of your MCP client. The file location and format vary depending on the client you use.

Claude Code (CLI)

Add to ~/.claude/.mcp.json:

{
  "mcpServers": {
    "screaming-frog-seo": {
      "type": "stdio",
      "command": "/full/path/to/screaming-frog-mcp"
    }
  }
}

Claude Desktop (macOS app)

Add to ~/Library/Application Support/Claude/claude_desktop_config.json, inside the existing mcpServers object:

{
  "mcpServers": {
    "screaming-frog-seo": {
      "command": "/full/path/to/screaming-frog-mcp"
    }
  }
}

Note: Claude Desktop does not use the "type": "stdio" field. If the file already contains other MCP servers, just add the "screaming-frog-seo" entry alongside them.

Other MCP clients

Refer to your client's documentation. The server uses stdio transport and the command is the path to screaming-frog-mcp.

Important: Always use the absolute path to the command (from which screaming-frog-mcp) rather than just the name, to avoid PATH resolution issues.

After editing the config, restart the application or session for changes to take effect.

Available tools

| Tool | Description | |------|-------------| | load_crawl | Load a crawl file | | crawl_summary | Get crawl statistics | | get_pages | Query pages with filters (status code, indexability, text search, section) | | get_links | Query inbound/outbound links | | broken_links_report | Broken links report | | title_meta_audit | Title and meta description audit | | indexability_audit | Non-indexable pages | | redirect_chains_report | Redirect chains | | canonical_issues_report | Canonical tag issues | | hreflang_issues_report | Hreflang issues | | orphan_pages_report | Orphan pages | | security_issues_report | Security issues | | redirect_issues_report | Redirect issues | | nofollow_inlinks_report | Nofollow inbound links | | compare_crawls | Compare two crawls | | query_tab | Access any crawl tab | | list_tabs | List available tabs | | list_crawls | Discover available crawls on the machine |

Slash command for automated analysis

A ready-made slash command is available that runs a full technical SEO audit in one step. Copy the command file to your commands directory:

mkdir -p ~/.claude/commands
curl -o ~/.claude/commands/analyze-crawl.md \
  https://raw.githubusercontent.com/acamolese/screaming-frog-mcp/main/commands/analyze-crawl.md

Then type /analyze-crawl in a new session. The command will ask for your crawl file and automatically run all audits, presenting a structured report.

Supported formats

  • .dbseospider (Derby, native DB-mode format)
  • .seospider (Screaming Frog project, requires CLI installed)
  • .duckdb (DuckDB cache)
  • .db (SQLite legacy)
  • CSV export directories

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.