firecrawl-scrape
仓库创建 2025年12月23日最近提交 6 个月前SkillHot 收录 20 天前
▸ 精选理由
提供脚本化抓取与格式化输出,便于批量收集网页内容。
▸ 风险提示
运行或安装可能会对外部 URL 发起请求,存在网络访问风险。
这个 Skill 做什么
通过 Firecrawl MCP 抓取网页并按指定格式抽取内容和结构化数据。
把任意网页内容抓下来并抽成你要的格式(markdown、html、text)和结构化字段,适合做爬虫、内容归档或快速提取表格/元信息。会在需要批量抓取页面、做全文检索或把页面内容交给下游处理时用到。基于 Firecrawl MCP,能保留页面结构并按指定格式输出,方便后续分析或入库。
▸ 展开 SKILL.md 英文原文
Scrape web pages and extract content via Firecrawl MCP
3.9k
Stars
298
Forks
40
仓库内 Skill
+17
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/parcadei/Continuous-Claude-v3/main/.claude/skills/firecrawl-scrape/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/parcadei/Continuous-Claude-v3/main/.claude/skills/firecrawl-scrape/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# Firecrawl Scrape Skill
## When to Use
- Scrape content from any URL
- Extract structured data from web pages
- Search the web and get content
## Instructions
```bash
uv run python -m runtime.harness scripts/mcp/firecrawl_scrape.py \
--url "https://example.com" \
--format "markdown"
```
### Parameters
- `--url`: URL to scrape
- `--format`: Output format - `markdown`, `html`, `text` (default: markdown)
- `--search`: (alternative) Search query instead of direct URL
### Examples
```bash
# 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.harnesvia SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有