scrapling
Installation
SKILL.md
Scrapling Skill (VCO)
Scrapling is a Python-based web scraping / extraction toolkit that exposes:
- a CLI (
scrapling ...) for fetching + extracting content into files - an optional MCP server (
scrapling mcp) so an agent can call structured scraping tools
This skill is CLI-first. Prefer it when you already have URLs and need reliable, repeatable extraction (CSS selector → file).
When to use
Use scrapling when you need:
- Extract specific parts of a web page (CSS selector / XPath) into
.txt/.md/.html - Run repeatable scraping jobs (batch URLs with a small wrapper script)
- Reduce token usage by extracting only the relevant DOM region before passing to the LLM
- Provide a local MCP endpoint for scraping tools (agent → MCP → scrapling)