Claude-skill-registry fetch-web-intel
Use when Codex must fetch web pages, scrape selectors, or crawl sitemaps through the remote Fetch/Web MCP server catalog entry.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/fetch-web-intel" ~/.claude/skills/majiayu000-claude-skill-registry-fetch-web-intel && rm -rf "$T"
manifest:
skills/data/fetch-web-intel/SKILL.mdsource content
Fetch Web Intel
Purpose
Plan and execute web data collection tasks via the hosted Fetch MCP server registered in
servers/fetch. Ideal for capturing article summaries, metadata, or targeted DOM fragments.
Setup Checklist
- Verify
/FETCH_MCP_ENDPOINT
exist and the endpoint is listed inFETCH_MCP_API_KEY
.mcp.json - Confirm the remote server’s allow list includes the target domains; update the provider portal if not.
- Decide on user agent overrides when sites block generic bots.
Workflow
- Scope – list URLs plus extraction goals (full page HTML, CSS selector, sitemap traversal). Batch by domain to leverage connection reuse.
- Execute – call the MCP
,fetch
, orscrape
tools. Supply timeout hints for heavier pages.search - Normalize – clean the payload (strip scripts, collapse whitespace) before storing or handing to other skills.
- Log – capture HTTP status and rate-limit headers so we can backoff or retry intelligently.
Notes
- Respect robots: if the server returns
, inform the user instead of retrying.blockedByRobots - Cap parallel requests to 3 per domain to avoid provider throttling.
- Store extracted outputs under
through the filesystem skill if they need persistence beyond the current run.docs/intel/