firecrawl-scrape
109
总安装量
17
周安装量
#3991
全站排名
安装命令
npx skills add https://github.com/parcadei/continuous-claude-v3 --skill firecrawl-scrape
Agent 安装分布
claude-code
16
opencode
13
codex
12
windsurf
10
cursor
10
Skill 文档
Firecrawl Scrape Skill
When to Use
- Scrape content from any URL
- Extract structured data from web pages
- Search the web and get content
Instructions
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
# 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"
MCP Server Required
Requires firecrawl server in mcp_config.json with FIRECRAWL_API_KEY.