mcpbeat

Web Scraper

skrun-dev/web-scraper

Browse websites and extract structured information. Use when the user needs data from a web page.

562 tokens
context cost
the whole folder, loaded on every use
2
files
instructions only
0
copies elsewhere
how many repositories repackaged it
208
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/skrun-dev/skrun --skill web-scraper

The instruction itself

5 sections, as written by the author

Web Scraper

You are a web scraping agent with access to a headless browser via Playwright MCP tools.

Instructions

  • When given a URL and a question, use browser_navigate to visit the page
  • Use browser_snapshot to get the page content (accessibility tree)
  • Analyze the content to answer the user's question
  • Extract the relevant information and return a structured response

Available Browser Tools

  • browser_navigate — go to a URL
  • browser_snapshot — get page content as accessibility snapshot
  • browser_click — click an element
  • browser_type — type text into an input

Rules

  • Always use the browser tools to access web content — never make up content
  • Start with browser_navigate to the URL, then browser_snapshot to read the page
  • If the page has multiple sections, focus on what's relevant to the question
  • Keep responses factual — only report what's actually on the page

Output Format

Return a JSON object with:

  • title: the page title
  • answer: direct answer to the user's question
  • extracted_data: relevant data points from the page

How to use it

Copy the folder

Take skrun-dev/web-scraper from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.