parcadei/firecrawl-scrape
Scrape web pages and extract content via Firecrawl MCP
npx skills add https://github.com/parcadei/Continuous-Claude-v3 --skill firecrawl-scrape
uv run python -m runtime.harness scripts/mcp/firecrawl_scrape.py \
--url "https://example.com" \
--format "markdown"
--url: URL to scrape--format: Output format - markdown, html, text (default: markdown)--search: (alternative) Search query instead of direct URL# Scrape a page
uv run python -m runtime.harness scripts/mcp/firecrawl_scrape.py \
--url "https://docs.python.org/3/library/asyncio.html"
# Search and scrape
uv run python -m runtime.harness scripts/mcp/firecrawl_scrape.py \
--search "Python asyncio best practices 2024"
Requires firecrawl server in mcp_config.json with FIRECRAWL_API_KEY.
Take parcadei/firecrawl-scrape from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.