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

slop-detect-mcp

v0.5.1

Published

MCP server that lets AI coding agents (Cursor, Claude Code, Windsurf) scan landing pages for AI-design-slop and pull a fix prompt.

Readme

slop-detect-mcp

MCP server that lets AI coding agents scan landing pages for AI-design-slop and pull a ready-to-paste fix prompt — straight from the chat.

Part of slop-detect: the 16-rule fingerprint that catches Cursor / v0 / Lovable template slop in the wild. This package wraps the live slop-detect.com API as a Model Context Protocol server, so Claude Code, Cursor, and Windsurf can audit and de-slop pages without a browser or API key.

Tools

| Tool | Input | What it does | | --- | --- | --- | | scan_page | { url } | Scans the page and returns a grade, a 0-100 score (lower is better), the slop tier, a verdict, the triggered patterns, and a shareable result URL. | | fix_prompt | { url } | Returns a copy-paste prompt that tells a coding agent exactly how to de-slop the page. |

Score polarity: 0 = no slop. Tiers are Clean (0–9), Mild (10–27), Heavy (28+).

Install

No global install needed — clients run it on demand via npx:

npx -y slop-detect-mcp

Or install it explicitly:

npm install -g slop-detect-mcp

Configure your client

All MCP clients use the same config shape. Add the server, restart the client, and ask it to "scan https://example.com for slop".

Claude Code

Add to .mcp.json in your project root (or claude_desktop_config.json for Claude Desktop):

{
  "mcpServers": {
    "slop-detect": {
      "command": "npx",
      "args": ["-y", "slop-detect-mcp"]
    }
  }
}

Or one-liner from the Claude Code CLI:

claude mcp add slop-detect -- npx -y slop-detect-mcp

Cursor

Add to .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):

{
  "mcpServers": {
    "slop-detect": {
      "command": "npx",
      "args": ["-y", "slop-detect-mcp"]
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "slop-detect": {
      "command": "npx",
      "args": ["-y", "slop-detect-mcp"]
    }
  }
}

Configuration

| Env var | Default | Purpose | | --- | --- | --- | | SLOP_DETECT_API | https://slop-detect.com | API base URL. Point it at a local dev build (e.g. http://localhost:8788) when hacking on the web app. |

{
  "mcpServers": {
    "slop-detect": {
      "command": "npx",
      "args": ["-y", "slop-detect-mcp"],
      "env": { "SLOP_DETECT_API": "http://localhost:8788" }
    }
  }
}

Notes

  • No captcha, but rate-limited. Non-browser callers skip the Turnstile challenge, so this server works headless — but the API rate-limits per IP. If you see a rate-limit message, wait a bit before scanning again.
  • Errors come back as tool content, never as crashes — a flaky page or a 429/502 returns a clear message the agent can act on.

License

MIT © Ravindra Kumar