playwright-browser
Headless browser via Playwright.
Community: Submitted by a user or imported; check the owner before granting accessOnlineNo sign-inGlobalFreeRead-only
What it can do
- Scrape Url: Scrape a URL and return page content: title, text, HTML, and metadata. Handles JavaScript-rendered pages, SPAs, and dynamic content that simple HTTP fetchers cannot access.
- Take Screenshot: Take a screenshot of any URL and return it as base64-encoded JPEG. Useful for visual verification, capturing UI state, or getting screenshots of web apps.
- Extract Links: Extract all hyperlinks from a URL. Returns list of {text, href, is_external} objects. Useful for crawling, sitemap analysis, or finding related resources.
What data it sees
Do you need an account
No: the server works without sign-in
Headless browser via Playwright. Scrapes JS-rendered pages, takes screenshots, extracts links and tables, fills forms, runs arbitrary JS. Useful when fetch() is not enough.
Server tool list (6)
Raw names from tools/list. Only developers need these.
| scrape_url | Scrape a URL and return page content: title, text, HTML, and metadata. Handles JavaScript-rendered pages, SPAs, and dynamic content that simple HTTP fetchers cannot access. |
| take_screenshot | Take a screenshot of any URL and return it as base64-encoded JPEG. Useful for visual verification, capturing UI state, or getting screenshots of web apps. |
| extract_links | Extract all hyperlinks from a URL. Returns list of {text, href, is_external} objects. Useful for crawling, sitemap analysis, or finding related resources. |
| extract_tables | Extract all HTML tables from a URL as structured JSON data. Perfect for scraping data from HTML tables, financial data, sports stats, product comparisons. |
| fill_form | Navigate to a URL, fill form fields, and optionally submit. Returns the page content after form interaction. Useful for automating web forms, searches, logins. |
| run_js | Navigate to a URL and execute custom JavaScript on the page. Returns the result of the script. Useful for complex data extraction, interacting with page state, or testing. |