Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/cotdp/scraper-mcp/web-scrapingnpx skills add cotdp/scraper-mcp --skill web-scrapinggit clone --depth 1 https://github.com/cotdp/scraper-mcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/cotdp/scraper-mcp/web-scraping)<a href="https://agentmods.dev/skills/cotdp/scraper-mcp/web-scraping"><img src="https://agentmods.dev/badge/skills/cotdp/scraper-mcp/web-scraping.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00057 | $0.01241 |
| Opus 5 | $0.00028 | $0.00620 |
| Sonnet 5 | $0.00011 | $0.00248 |
| Haiku 4.5 | $0.00006 | $0.00124 |
Grade A, and why
web-scraping scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 231 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Web Scraping Skill
Toolkit for efficient web content extraction using the scraper MCP server tools.
When to Use This Skill
- Extracting content from web pages for analysis
- Converting web pages to markdown for LLM consumption
- Extracting plain text from HTML documents
- Harvesting links from web pages
- Batch processing multiple URLs concurrently
Available Tools
| Tool | Purpose | Best For |
|---|---|---|
mcp__scraper__scrape_url |
Convert HTML to markdown | LLM-friendly content extraction |
mcp__scraper__scrape_url_html |
Raw HTML content | DOM inspection, metadata extraction |
mcp__scraper__scrape_url_text |
Plain text extraction | Clean text without formatting |
mcp__scraper__scrape_extract_links |
Link harvesting | Site mapping, crawling |
Tool Usage
1. Markdown Conversion (Recommended for LLMs)
Convert web pages to clean markdown format:
mcp__scraper__scrape_url(
urls=["https://example.com/article"],
css_selector=".article-content",
timeout=30,
max_retries=3
)
Response includes:
content: Markdown-formatted texturl: Final URL (after redirects)status_code: HTTP statusmetadata: Headers, timing, retry info
2. Raw HTML Extraction
Get unprocessed HTML for DOM analysis:
mcp__scraper__scrape_url_html(
urls=["https://example.com"],
css_selector="meta",
timeout=30
)
Use cases:
- Extracting meta tags and Open Graph data
- Inspecting page structure
- Getting specific HTML elements
3. Plain Text Extraction
Extract readable text without HTML markup:
mcp__scraper__scrape_url_text(
urls=["https://example.com/page"],
strip_tags=["script", "style", "nav", "footer"],
css_selector="#main-content"
)
Parameters:
strip_tags: HTML elements to remove before extraction (default: script, style, meta, link, noscript)
4. Link Extraction
Harvest all links from a page:
mcp__scraper__scrape_extract_links(
urls=["https://example.com"],
css_selector="nav.primary"
)
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago First seen · 231 lines · 57 tokens per session scan A b47d0548535b
web-scraping is a skill published in the GitHub repository cotdp/scraper-mcp (7 stars, last pushed 3mo ago), licensed MIT. It adds 57 tokens to every session and 1,241 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
x402
Set up Browser Use Cloud payments with x402 — pay per request from a crypto wallet (USDC on Base mainnet), no signup or API key. Two setups it works out up front — "just use it" (set up a wallet so you or Claude Code can run cloud browser tasks paid from the wallet — Claude writes and runs throwaway scripts, nothing…
browser-use
Direct browser control via CDP for web interaction: automation, scraping, testing, screenshots, and site/app work.
remote-browser
Controls an isolated Browser Use Cloud browser from a sandboxed machine with the current Browser Use CLI.
cloud
Documentation reference for using Browser Use Cloud — the hosted API and SDK for browser automation. Use this skill whenever the user needs help with the Cloud REST API (v2, v3, or v4), browser-use-sdk (Python or TypeScript), X-Browser-Use-API-Key authentication, cloud sessions, browser profiles, profile sync, CDP…
js-in-html-testing
Test JS logic embedded in HTML using two-layer strategy - Python unit tests + Playwright browser integration tests.
playwright-screen-recording
Record browser test videos with Playwright for PR review and bug fix verification.