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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@louis030195/gptzero-mcp

v0.1.1

Published

MCP server for GPTZero AI detection API

Readme

@louis030195/gptzero-mcp

MCP (Model Context Protocol) server for GPTZero AI detection API. Detect AI-generated text directly from Claude, ChatGPT, or any LLM that supports MCP.

Features

  • 🤖 Detect AI-generated text with confidence scores
  • 🌍 Multilingual support (French, Spanish)
  • 📊 Detailed probability breakdowns (AI/Human/Mixed)
  • 🎯 High/medium/low confidence categories

Installation

Claude Desktop

Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json on Mac or %APPDATA%\Claude\claude_desktop_config.json on Windows):

{
  "mcpServers": {
    "gptzero": {
      "command": "npx",
      "args": ["-y", "@louis030195/gptzero-mcp"],
      "env": {
        "GPTZERO_API_KEY": "your-gptzero-api-key"
      }
    }
  }
}

Claude Code

# Install globally in user scope with API key
claude mcp add -s user gptzero npx -e GPTZERO_API_KEY=your-gptzero-api-key -- -y @louis030195/gptzero-mcp

Get Your GPTZero API Key

  1. Go to GPTZero
  2. Sign up or log in
  3. Navigate to API settings
  4. Copy your API key

Usage

Once configured, you can use natural language to detect AI content:

  • "Check if this text is AI-generated: [paste text]"
  • "Analyze this document for AI detection"
  • "What's the probability this was written by AI?"
  • "Is this human or AI written?"

Tools

gptzero_detect

Detect if text was generated by AI.

Parameters:

  • document (string, required): Text to analyze
  • multilingual (boolean, optional): Enable multilingual detection for French/Spanish (default: false)

Returns:

  • Predicted class (ai/human/mixed)
  • Confidence category (high/medium/low)
  • Probability scores for each class
  • Detailed sentence-level analysis

gptzero_model_versions

Get available GPTZero model versions.

Returns: List of available model versions

Development

# Clone the repo
git clone https://github.com/louis030195/gptzero-mcp.git
cd gptzero-mcp

# Install dependencies
npm install

# Build
npm run build

# Run locally
GPTZERO_API_KEY=your-api-key npm start

API Documentation

See GPTZero API Docs for full API details.

License

MIT

Author

Louis Beaumont