Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/AgricIDaniel/claude-seo/llms.txt

Use this file to discover all available pages before exploring further.

The Firecrawl extension adds full-site crawling, URL discovery, and JavaScript-rendered scraping to Claude SEO via the Firecrawl MCP server. Where the core skill fetches individual pages, Firecrawl maps and crawls entire sites in a single pass — including React, Vue, Next.js, and other JavaScript-heavy sites that require a browser to render their content. This is especially useful for /seo audit on larger or more complex sites where the core skill might miss pages behind client-side routing or lazy-loaded link structures.

What Firecrawl adds

  • Full-site crawl — extract content from every page on a domain, up to 500 pages per crawl
  • Site mapping — discover all URLs without fetching content (fast and credit-efficient)
  • JS-rendered scraping — render JavaScript before extraction, solving the SPA content problem
  • Site-scoped search — search within a site for specific content without crawling everything
The free tier provides 500 credits per month. One credit equals one page crawled or scraped; map operations cost 0.5 credits per URL discovered.

Prerequisites

Installation

1

Clone the repo (if you haven't already)

git clone --depth 1 https://github.com/AgriciDaniel/claude-seo.git
cd claude-seo
2

Run the installer

./extensions/firecrawl/install.sh
The installer prompts for your Firecrawl API key and configures the MCP server in ~/.claude/settings.json automatically.
3

Restart Claude Code

Close and reopen Claude Code so it picks up the new MCP server entry.
4

Verify

/seo firecrawl map https://example.com
You should see a list of discovered URLs. If the MCP is not connected, the skill will print the install command.

Commands

CommandPurposeCredits
/seo firecrawl crawl <url>Full-site crawl with content extraction1 per page
/seo firecrawl map <url>Discover site structure (URLs only, no content)0.5 per URL
/seo firecrawl scrape <url>Single-page deep scrape with JS rendering1
/seo firecrawl search <query> <url>Search within a site for specific content1 per result

crawl — full-site crawl

Crawls an entire website from the given URL, extracting page content, metadata, and links for all discovered pages. Supports includePaths and excludePaths glob patterns to focus the crawl on a section (for example, /blog/* only) and an adjustable depth limit (default: 3 levels, max: 500 pages).
# Crawl the full site
/seo firecrawl crawl https://example.com

# For very large sites, the skill caps at 100 pages by default
# and prompts before going further to prevent unexpected credit usage

map — URL discovery

The fastest way to get a complete URL list without fetching any page content. Use this first on large sites, then pipe the results into a targeted crawl of the most important sections.
/seo firecrawl map https://example.com
Output includes a URL pattern breakdown — how many pages fall under /blog/*, /products/*, /category/*, and so on — so you can spot URL structure problems and crawl budget waste at a glance.

scrape — single-page JS rendering

Renders a single page with full JavaScript execution before extraction. More thorough than the core skill’s fetch_page.py for SPA-based sites, and capable of waiting for dynamic content below the fold.
/seo firecrawl scrape https://example.com/blog/post
For static HTML pages, the core skill’s fetch_page.py is faster and costs no credits. Use scrape when a page is JS-rendered, returns an empty <div id="root"> shell, or requires interaction before content appears.
Searches within a website for pages matching a query without crawling the whole site. Useful for checking whether content on a specific topic already exists, finding internal linking opportunities, or scanning a competitor site for a subject area.
/seo firecrawl search "keyword research" https://example.com

Credit pricing

PlanCredits/monthPrice
Free500$0
Hobby3,000$16/mo
Standard100,000$83/mo
Growth500,000$333/mo
The skill estimates credit usage before large crawls and asks for confirmation so you don’t accidentally burn your monthly allocation on a single audit.

How it complements the core audit

When Firecrawl is active during /seo audit, the orchestrator follows this pattern:
  1. map — discover all site URLs quickly (0.5 credits/URL)
  2. Compare discovered URLs against the XML sitemap to surface orphan pages and stale sitemap entries
  3. crawl on the 50 most important pages (homepage, key sections, top-traffic URLs)
  4. Feed crawled content to all subagents — technical, content, schema, geo — for analysis at scale
Without Firecrawl, the core skill analyzes pages you point it at explicitly. With Firecrawl, it can audit a 300-page site holistically in a single /seo audit run.

Integration with core skills

SkillHow Firecrawl helps
/seo auditUses map for full URL discovery, crawl for deep multi-page analysis
/seo technicalBroken link detection across the entire site; redirect chain mapping
/seo sitemapCompares XML sitemap vs. actually crawlable pages; flags orphan pages and 404 entries
/seo contentThin content detection at scale; near-duplicate identification across pages
/seo schemaSchema extraction and coverage reporting across all crawled pages

Uninstall

./extensions/firecrawl/uninstall.sh      # macOS / Linux
.\extensions\firecrawl\uninstall.ps1     # Windows

Troubleshooting

SymptomCauseFix
MCP not connectingAPI key not in settingsRun cat ~/.claude/settings.json | python3 -m json.tool | grep firecrawl to check; re-run installer if missing
402 Payment RequiredCredits exhaustedCheck usage at firecrawl.dev/app; upgrade or wait for monthly reset
403 ForbiddenSite blocks crawling via robots.txt or CloudflareTry scrape (single page) instead of crawl; some sites require manual fetching
408 TimeoutPage renders too slowlyIncrease the timeout parameter; try without JS rendering for static pages

Build docs developers (and LLMs) love