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

@perufitlife/aitells-mcp

v0.1.0

Published

MCP server for aitells — detect AI fingerprints in text and rewrite in your voice. Free detector, $19 lifetime rewriter.

Readme

aitells-mcp

MCP server for aitells — detect AI fingerprints in your text and rewrite in your voice, directly from Claude Code, Cursor, or any MCP-compatible client.

npm license node

What is this

Two MCP tools:

  • detect_ai_tells — paste any text, get a 0-100 humanness score plus exact positions of every AI fingerprint (em-dashes, "delve", parallel bullets, "in conclusion", and 9 more patterns). Free, no API key.
  • humanize_text — rewrite AI-generated text matching the voice of writing samples you provide. Free first use, $19 lifetime unlock at aitells.vercel.app/rewrite.

Built after my own Reddit account got 2 public "all comments are AI generated" callouts in 24 hours. The patterns are findable; this tool just makes them visible (and fixable) before you hit post.

Install

npm install -g @perufitlife/aitells-mcp

Configure (Claude Code)

Edit ~/.claude.json (or your project's .claude.json):

{
  "mcpServers": {
    "aitells": {
      "command": "npx",
      "args": ["@perufitlife/aitells-mcp"]
    }
  }
}

For unlimited humanize_text after buying the $19 lifetime unlock:

{
  "mcpServers": {
    "aitells": {
      "command": "npx",
      "args": ["@perufitlife/aitells-mcp"],
      "env": {
        "AITELLS_LICENSE_EMAIL": "[email protected]"
      }
    }
  }
}

Configure (Cursor)

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "aitells": { "command": "npx", "args": ["@perufitlife/aitells-mcp"] }
  }
}

Use it

After config + reload:

"Use aitells to detect AI tells in this LinkedIn post I drafted: [paste]"

"Humanize this Reddit comment with these samples of how I write: [paste comment + samples]"

The model will pick the right tool automatically.

Tools reference

detect_ai_tells

| param | type | required | description | |---|---|---|---| | text | string | yes | Text to scan (max 30,000 chars) |

Returns: humanness score (0-100), grade label, list of flagged rules with severity + match positions.

humanize_text

| param | type | required | description | |---|---|---|---| | text | string | yes | AI-generated text to rewrite (max 8,000 chars) | | samples | string | recommended | 1-3 samples of how you actually write |

Returns: rewritten text in your voice.

The 12 rules

| # | Pattern | Severity | |---|---|---| | 1 | em-dash (—) | high | | 2 | "delve" | high | | 3 | "tapestry", "realm", "landscape", "journey", "endeavor" | high | | 4 | "navigate the X", "unlock the X", "harness the X" | medium | | 5 | "Great question", "Absolutely", "100%" as openers | high | | 6 | "In conclusion", "In summary", "Ultimately,", "At the end of the day" | high | | 7 | buzzword cluster (leverage, robust, seamless, holistic) | medium | | 8 | parallel bullet structure | medium | | 9 | tricolon rhythm (X, Y, and Z) | medium | | 10 | uniform sentence length | low | | 11 | Title Case headings in casual text | medium | | 12 | "However,", "Moreover,", "Furthermore," | low |

Pricing

  • Detector: free forever, no API key, no rate limit beyond fair-use
  • Humanizer: free first use per IP, then $19 lifetime at aitells.vercel.app/rewrite (first 100 buyers, then $49/mo)

Sister tools

License

MIT.