$npx -y skills add parcadei/Continuous-Claude-v3 --skill firecrawl-scrapeScrape web pages and extract content via Firecrawl MCP
| 1 | # Firecrawl Scrape Skill |
| 2 | |
| 3 | ## When to Use |
| 4 | |
| 5 | - Scrape content from any URL |
| 6 | - Extract structured data from web pages |
| 7 | - Search the web and get content |
| 8 | |
| 9 | ## Instructions |
| 10 | |
| 11 | ```bash |
| 12 | uv run python -m runtime.harness scripts/mcp/firecrawl_scrape.py \ |
| 13 | --url "https://example.com" \ |
| 14 | --format "markdown" |
| 15 | ``` |
| 16 | |
| 17 | ### Parameters |
| 18 | |
| 19 | - `--url`: URL to scrape |
| 20 | - `--format`: Output format - `markdown`, `html`, `text` (default: markdown) |
| 21 | - `--search`: (alternative) Search query instead of direct URL |
| 22 | |
| 23 | ### Examples |
| 24 | |
| 25 | ```bash |
| 26 | # Scrape a page |
| 27 | uv run python -m runtime.harness scripts/mcp/firecrawl_scrape.py \ |
| 28 | --url "https://docs.python.org/3/library/asyncio.html" |
| 29 | |
| 30 | # Search and scrape |
| 31 | uv run python -m runtime.harness scripts/mcp/firecrawl_scrape.py \ |
| 32 | --search "Python asyncio best practices 2024" |
| 33 | ``` |
| 34 | |
| 35 | ## MCP Server Required |
| 36 | |
| 37 | Requires `firecrawl` server in mcp_config.json with FIRECRAWL_API_KEY. |