crawlforge-web-scraping

crawlforge-web-scraping is a skill for Claude Code, Codex from mysleekdesigns/crawlforge-mcp. It costs 134 tokens per session (2,355 once invoked), scanned A, original, MIT.

A web-scraping skill for the CrawlForge MCP server. Web scraping means retrieving information from websites and returning it as Markdown, HTML, plain text, links, or page metadata.

In plain words
What is it for?
Fetching a URL, cleaning an article, extracting text or links, reading SEO metadata, mapping a site's URLs, and crawling documentation or other multi-page sites.
Why use it?
It helps an agent choose the appropriate operation for reading one page, extracting clean article text, discovering site URLs, or crawling a whole site.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Fetching a URL, cleaning an article, extracting text or links, reading SEO metadata, mapping a site's URLs, and crawling documentation or other multi-page sites.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mysleekdesigns/crawlforge-mcp/crawlforge-web-scraping
Install

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.

Any agent
npx skills add mysleekdesigns/crawlforge-mcp --skill crawlforge-web-scraping
Clone the repo
git clone --depth 1 https://github.com/mysleekdesigns/crawlforge-mcp

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for crawlforge-web-scraping

README.md
[![agentmods](https://agentmods.dev/badge/skills/mysleekdesigns/crawlforge-mcp/crawlforge-web-scraping/github.svg)](https://agentmods.dev/skills/mysleekdesigns/crawlforge-mcp/crawlforge-web-scraping)
Your own site
<a href="https://agentmods.dev/skills/mysleekdesigns/crawlforge-mcp/crawlforge-web-scraping"><img src="https://agentmods.dev/badge/skills/mysleekdesigns/crawlforge-mcp/crawlforge-web-scraping/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for crawlforge-web-scraping

Your own site · 80×15
<a href="https://agentmods.dev/skills/mysleekdesigns/crawlforge-mcp/crawlforge-web-scraping"><img src="https://agentmods.dev/badge/skills/mysleekdesigns/crawlforge-mcp/crawlforge-web-scraping.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 134 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,355 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00134 $0.02355
Opus 5 $0.00067 $0.01177
Sonnet 5 $0.00027 $0.00471
Haiku 4.5 $0.00013 $0.00235

Measured 3d ago against content hash db20ed2f96b5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

crawlforge-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 3d 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.

src/skills/agent-skills/crawlforge-web-scraping/SKILL.md · 215 lines

How it starts

The opening of the file, as written. The whole thing — 215 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CrawlForge Web Scraping

Fetch and clean web content with the CrawlForge MCP server. This skill covers single-page scraping (one URL → Markdown / HTML / text / links / metadata), site discovery (sitemaps and URL maps), and whole-site crawling.

When to use

  • "Scrape this URL" / "get the markdown of this page" / "read this article" → scrape
  • "Just give me the raw HTML / JSON / headers" → fetch_url
  • "Give me the clean article text, no nav or ads" → extract_content
  • "Get the plain text / markdown body" → extract_text
  • "List every link on this page" → extract_links
  • "Get the title / meta / Open Graph / SEO tags" → extract_metadata
  • "Map all the URLs on this site" / "generate a sitemap" → map_site
  • "Crawl the whole docs site" / "index every page" → crawl_deep
  • "Read more of that truncated result" → read_result

Tool selection (fastest path first)

  1. scrape is the default for single pages. One fetch returns many formats at once — no N-request fan-out. Ask for exactly the formats you need.
  2. Use the single-purpose basic tools (fetch_url, extract_text, extract_links, extract_metadata) when you only want one cheap thing.
  3. extract_content when you specifically want Readability-cleaned article body (strips ads, nav, footers) — better than extract_text for articles.
  4. map_site before a crawl to estimate scope / find section URLs.
  5. crawl_deep to walk an entire site and (optionally) extract content.

If a page returns 403/429, a CAPTCHA, or empty "enable JavaScript" content, switch to the crawlforge-stealth-browsing skill (stealth_mode). When the site is known to block, use scrape with escalate: true instead of two calls — still never stealth_mode first.

scrape — unified multi-format (cost: 2)

Get markdown + links + metadata in a single call:

{
  "tool": "scrape",
  "params": {
    "url": "https://example.com/article",
    "formats": ["markdown", "links", "metadata"],
    "onlyMainContent": true
  }
}

Read the full file on GitHub · 215 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

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.

  1. 3d ago Changed · +71 lines db20ed2f96b5
  2. 5d ago Changed · +2 lines 3ffef0d3d0dd
  3. 10d ago First seen · 142 lines · 134 tokens per session scan A ae106f7201c6

Subscribe to this mod's changes

crawlforge-web-scraping is a skill published in the GitHub repository mysleekdesigns/crawlforge-mcp (2 stars, last pushed today), licensed MIT. It adds 134 tokens to every session and 2,355 once invoked, about $0.0007 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.

Related

Other skills, from other repositories

nimble-web-expert

Get web data now — fast, incremental, immediately responsive to what the user needs. The only way Claude can access live websites. USE FOR: Fetching any URL or reading any webpage Scraping prices, listings, reviews, jobs, stats, docs from any site Running Extraction Templates — reusable, site-specific structured…

Nimbleway/agent-skills · 155 tokens

crw-dynamic-search

Programmatic web search and scrape with context isolation. Use for any research task where you need to search the web, filter results, and extract specific information — without flooding your context window with raw HTML and boilerplate. This is the single biggest token-saver in the crw skill set. Triggered by "search…

us/crw · 143 tokens

crw

Scrape, crawl, map, and search the web using fastCRW's native /v1 API. Use when the user needs web page content, site-wide extraction, URL discovery, or web search results. Single binary, 14 MB RAM; /v2 exists separately for Firecrawl migration.

us/crw · 64 tokens

crw

Scrape, crawl, map, and search the web using fastCRW's native /v1 API. Use when the user needs web page content, site-wide extraction, URL discovery, or web search results. Single binary, 14 MB RAM; /v2 exists separately for Firecrawl migration.

us/crw · 64 tokens

crw-watch

Detect what changed between two page snapshots with fastCRW — stateless diff as a REST primitive. Use when you need to track content changes, monitor a page for updates, or build a cron-based alert system: "has this page changed?", "alert me when pricing changes", "diff this week's scrape against last week's". Step 7…

us/crw · 81 tokens

chrome-devtools

Use Chrome DevTools MCP to control and inspect a live Chrome instance for network, console, performance, rendering, and Deep debugging. Pairs with playwright-cli (deterministic interaction/E2E) — complements, not duplicates.

ulises-jeremias/agent-toolkit · 50 tokens