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

@iteachyouai/slopcheck

v0.1.3

Published

MCP server that detects AI slop: fabricated claims, false uniqueness, histrionic language, and other substance issues in AI-generated content

Readme

slopCheck

CI npm License: MIT

MCP server that detects AI slop in your content — fabricated claims, false uniqueness, histrionic language, and other substance issues that AI writing tools introduce.

Existing "AI detectors" catch writing style. slopCheck catches substance: is what AI wrote actually true?

What it detects

10 categories, ~20 patterns:

| Category | Examples | Severity | |----------|----------|----------| | Fabricated Claims | "saves 500 hours", "73% of developers" | High | | False Uniqueness | "the only tool that", "nobody else built" | High | | Histrionic Language | "game-changer", "revolutionary", "killer feature" | Medium | | Phantom Citations | "studies show", "according to experts" | High | | Inflated Credentials | "taught 500+ students" (actual: 185) | Medium | | Misleading Completeness | "all tests pass", "fully tested" | Medium | | Generic Defaults | "[INSERT]", "Acme Corp", template testimonials | Low | | AI Formatting Artifacts | Emoji section headers (the ChatGPT tell) | Low | | Fabricated Narrative | "I was using Cursor", "My Mac was at 14GB" | High | | Wrong Audience | Technical jargon in marketing copy (LLM mode) | Low |

Two modes

  • No API key: Regex-only detection (~20 patterns). Works fully offline.
  • With ANTHROPIC_API_KEY: Adds Haiku-powered claim analysis for deeper substance checking.

Personal slop profile

The build_profile tool mines your Claude Code session history for correction patterns — finding where you've called out the AI for making things up. This builds a weighted profile that boosts detection sensitivity for YOUR specific weak spots.

Install

npm install -g @iteachyouai/slopcheck

Claude Code MCP config

Add to ~/.claude.json:

{
  "mcpServers": {
    "slopcheck": {
      "command": "npx",
      "args": ["-y", "@iteachyouai/slopcheck"],
      "env": {
        "ANTHROPIC_API_KEY": "your-key-here"
      }
    }
  }
}

The ANTHROPIC_API_KEY is optional — without it, slopCheck runs in regex-only mode.

MCP Tools

scan_content

Scan text for slop. Returns flagged items with category, severity, confidence, and suggestions.

Input: { content: "your text here", severity_threshold?: "low"|"medium"|"high" }
Output: Score (0-100), flags with suggestions

check_claim

Analyze a specific claim for verifiability.

Input: { claim: "saves 500 hours per year", context?: "optional surrounding text" }
Output: Issues found, verification checklist

list_patterns

List all detection patterns with descriptions and examples.

Input: { category?: "fabricated-claim" }
Output: Pattern library with examples

build_profile

Mine your session history to build a personal slop profile.

Input: {}
Output: Profile summary, writes ~/.slopcheck/profile.json

Programmatic use

import { scanContent } from "@iteachyouai/slopcheck";

const result = scanContent("Studies show this game-changer saves 500 hours per year.");
console.log(result.score);  // 0-100
console.log(result.flags);  // Array of flagged items

Development

git clone https://github.com/ITeachYouAI/slopcheck.git
cd slopcheck
npm install
npm test
npm run test:coverage

Contributing

See CONTRIBUTING.md for guidelines on adding patterns, running tests, and submitting PRs.

License

MIT