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

anticheck

v1.0.2

Published

AntiCheck MCP Server - Validates code architecture, security, frontend quality, and vibe coding anti-patterns

Downloads

187

Readme

AntiCheck

Validate code architecture, security issues, and AI vibe-coding anti-patterns directly from your IDE using the Model Context Protocol (MCP).

AntiCheck gives AI assistants like Claude, Cursor, and Windsurf the ability to act as Senior Engineers—auditing your local codebase for architectural flaws, security vulnerabilities, frontend issues, and common AI-generated bugs.

Install

# Install globally
npm install -g anticheck

# Or use directly via npx
npx anticheck

Usage

AntiCheck operates as an MCP server. It is meant to be run by an AI Assistant rather than consumed directly by humans.

Using with Cursor

Navigate to Cursor Settings > Features > MCP Servers and click + Add New MCP Server.

  • Name: anticheck
  • Type: command
  • Command: npx
  • Args: -y anticheck

Restart Cursor to see the tools.

Using with Claude Desktop

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "anticheck": {
      "command": "npx",
      "args": ["-y", "anticheck"]
    }
  }
}

Why AntiCheck?

AI coding tools are incredibly fast but often produce specific types of technical debt known as Vibe Coding. AntiCheck is specifically designed to hunt these down.

  • Detects Bad Architecture: Catches god classes, missing DTOs, and dependency arrows pointing the wrong way.
  • 🔒 Highlights Security Smells: Finds hardcoded secrets, authorization bypasses, and unvalidated inputs.
  • Catches Vibe Coding Bugs: Flags missing React/Vue hooks cleanup, swallowed exceptions, infinite recursion, and missing loading/error states.
  • 🤖 Native MCP Integration: The AI Assistant uses AntiCheck to find the bugs, and then fixes them for you automatically.

Output Example

Once installed, ask your AI: "Run a full architecture and security audit using anticheck."

The AI will scan your code and output a structured diagnostic:

Anti-pattern detected:

Rule Title: Missing Pagination (v1.0) Severity: High (Weight: 80) Finding: The endpoint GET /users executes .ToList() on the DbSet without Skip or Take. Impact: Will cause memory exhaustion and DB timeouts in production. Fix: I will implement offset pagination for you.


Github Repository | Built by Muhamed Essam