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

@stealth-scraper/mcp

v0.1.1

Published

Model Context Protocol server for Stealth Scraper — gives Claude, Cursor, and other MCP-aware agents direct access to anti-bot-resistant web scraping.

Readme

@stealth-scraper/mcp

Model Context Protocol (MCP) server for Stealth Scraper. Plugs the anti-bot-resistant web scraping API directly into Claude Desktop, Cursor, Cline, and any other MCP-aware agent.

Status: beta. Public API is stable; we follow semver from 1.0.0 onward.

What it does

Exposes four tools to the agent:

| Tool | What it does | | -------------------- | ---------------------------------------------------------------------------- | | scrape_url | Stealth-scrape a URL, with optional natural-language hints about what to extract. | | extract_structured | Run a one-shot extract with an inline schema (list of fields + CSS selectors). | | list_templates | List the user's saved extraction recipes. | | run_template | Run a saved template against a target URL. |

Claude Desktop setup

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "stealth-scraper": {
      "command": "npx",
      "args": ["@stealth-scraper/mcp"],
      "env": {
        "STEALTH_SCRAPER_API_KEY": "ssk_..."
      }
    }
  }
}

Restart Claude Desktop. You should see a hammer/tools icon in the input area listing the four tools.

Cursor / Cline / generic stdio

Any client that supports an MCP stdio server can use:

{
  "command": "npx",
  "args": ["@stealth-scraper/mcp"],
  "env": { "STEALTH_SCRAPER_API_KEY": "ssk_..." }
}

For a custom backend (self-hosted), also set STEALTH_SCRAPER_BASE_URL=https://your-host.

Example agent prompts

Use stealth-scraper to grab the top 20 stories from Hacker News with titles, scores, and links.

List my saved scraper templates, then run the "Amazon product price" one against https://www.amazon.com/dp/B08N5WRWNW.

Run directly via npx (recommended)

STEALTH_SCRAPER_API_KEY=ssk_... npx @stealth-scraper/mcp
# runs the server on stdio

Or install globally

npm install -g @stealth-scraper/mcp
STEALTH_SCRAPER_API_KEY=ssk_... npx @stealth-scraper/mcp

Development

npm install
npm run build           # produces dist/index.js (the bin)
STEALTH_SCRAPER_API_KEY=ssk_test node dist/index.js

Smoke test against the local backend with an MCP inspector:

npx @modelcontextprotocol/inspector node dist/index.js

RUN THIS TO PUBLISH

npm install
npm run build
npm publish --access public   # under the @stealth-scraper org

First-time only: create the npm org at https://www.npmjs.com/org/create with name stealth-scraper.

License

MIT