Vibecosystem firecrawl-scrape
Scrape web pages and extract content via Firecrawl MCP
install
source · Clone the upstream repo
git clone https://github.com/vibeeval/vibecosystem
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/vibeeval/vibecosystem "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/firecrawl-scrape" ~/.claude/skills/vibeeval-vibecosystem-firecrawl-scrape && rm -rf "$T"
manifest:
skills/firecrawl-scrape/SKILL.mdsource content
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 to scrape--url
: Output format ---format
,markdown
,html
(default: markdown)text
: (alternative) Search query instead of direct URL--search
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.