npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-mrscraper

v1.2.0

Published

n8n community nodes package for MrScraper

Readme

n8n-nodes-mrscraper

This is an n8n community node. It lets you use MrScraper in your n8n workflows.

MrScraper is an AI-powered web scraping tool that allows users to extract structured data from websites without needing extensive coding skills. User can create scraper once via chatting with our agent and use the same logic on other URLs.

Main page: https://mrscraper.com

n8n is a fair-code licensed workflow automation platform.

Installation Operations Credentials Compatibility Usage Resources Version history

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations

List of operations supported:

Create AI Scraper

Create AI scraper programmatically. The nodes behave just like the code explained in this docs. There are 3 supported AI scrapers:

  1. General Agent Scraper: Retrieves URL HTML and converts it to a targeted JSON structure based on your prompt. Ideal for detail pages
  2. Listing Agent Scraper: Scrapes data from search results or listing pages with pagination, infinite scroll, or load more buttons
  3. Map Agent Scraper: Scrapes URLs from a starting URL until the specified number of unique URLs has been collected. Ideal for URL scraping on complex landing page.

Rerun

Re-execute your MrScraper scraping agent that you've developed on our platform or from the create AI Scraper. We provide 4 different operations corresponding to the 4 agent types available (manual only available from platform):

  1. Manual Scraper: Step-by-step scraping agent
  2. General Agent Scraper: Given a new URL, the agent retrieves its HTML and converts it to the same targeted JSON structure based on your previous prompt.
  3. Listing Agent Scraper: Given a new URL, the agent perform pagination clicking, infinite scroll, or load more buttons and scrape the data following the previous run when creating the scraper.
  4. Map Agent Scraper: Re-execute the map agent scraper.

This operation provides parameters that match those in the MrScraper platform.

Result

Retrieve scraping results from MrScraper database:

  1. Get Many: Returns results in table format with pagination (page number, page size), filters, and sorting options
  2. Get Latest: Returns N most recent scraping results based on scraper ID
  3. Get Detail: Returns detailed scraping results including data, screenshots, and HTML

Credentials

MrScraper API Token

MrScraper API token is the only authentication method available for this node. You can find your API key in the MrScraper API Tokens page.

Compatibility

This node has been tested with the following versions of N8N:

  • N8N 2.0.3

Usage

  1. Develop your scraping agent (manual/general/listing/map) through our platform
  2. Activate scraper API access
  3. Integrate the param into n8n rerun operation
  4. Retrieve scraping result with n8n result operation

Resources