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

@rephrasy/mcp

v0.2.0

Published

MCP server for Rephrasy — humanize AI-generated text and check AI-detection scores from Claude, Cursor, or any MCP client.

Readme

Rephrasy MCP Server

npm

Use Rephrasy from Claude, Cursor, or any MCP client: humanize AI-generated text and check AI-detection scores without leaving your editor or agent workflow.

Two tools, one API key:

| Tool | What it does | |---|---| | humanize | Rewrites AI-generated text in a natural, human style while preserving meaning | | detect | Scores how likely a text is to be flagged as AI-written (overall + optional per-sentence) |

Setup

1. Get an API key — sign in at rephrasy.ai → Account → API. Both tools bill against your Rephrasy plan.

2. Add the server to your client:

Claude Code

claude mcp add rephrasy -e REPHRASY_API_KEY=<your-key> -- npx -y @rephrasy/mcp

Claude Desktop

Add to claude_desktop_config.json (Settings → Developer → Edit Config):

{
  "mcpServers": {
    "rephrasy": {
      "command": "npx",
      "args": ["-y", "@rephrasy/mcp"],
      "env": { "REPHRASY_API_KEY": "<your-key>" }
    }
  }
}

Cursor

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

{
  "mcpServers": {
    "rephrasy": {
      "command": "npx",
      "args": ["-y", "@rephrasy/mcp"],
      "env": { "REPHRASY_API_KEY": "<your-key>" }
    }
  }
}

Until the package is on npm you can run it straight from GitHub: replace "args": ["-y", "@rephrasy/mcp"] with "args": ["-y", "github:rephrasyai/rephrasy-mcp"].

Hosted server (no install)

Rephrasy also runs a hosted MCP server, so clients that speak streamable HTTP need nothing installed locally:

claude mcp add rephrasy https://v2-humanizer.rephrasy.ai/mcp -t http \
  -H "Authorization: Bearer <your-key>"

It supports OAuth as well — ChatGPT and other clients that require it discover it from the server and send you through a one-time consent page, so the key never reaches the client. The hosted server carries a wider tool set (engine recommendations, readability, bring-your-own-key detectors). Full docs: https://rephrasy.ai/mcp.

Tools

humanize

| Parameter | Type | Required | Description | |---|---|---|---| | text | string | yes | The text to humanize | | model | string | no | Rephrasy model, default "v4" (recommended). See Models | | style | string | no | Writing-style ID from your account to mimic a specific voice | | language | string | no | Output language hint (e.g. "en", "de"); defaults to input language |

Returns the rewritten text plus the number of words charged.

Models

| model | When to use it | |---|---| | v4 | Default and recommended. Natural rhythm and sentence variety, length close to the source. | | ft_clean-v3 | Highest meaning retention and near-identical length — technical writing and anything with figures. | | v3 | Voice-driven rewrite; pass style for a specific voice. | | SEO Model | Simple, informal phrasing built around keywords. | | Undetectable Model v2 | Previous-generation model. |

detect

| Parameter | Type | Required | Description | |---|---|---|---| | text | string | yes | The text to score (max 15,000 characters) | | per_sentence | boolean | no | If true, also returns a score per sentence |

Returns JSON with scores.overall (lower = more human-like) and, in per-sentence mode, sentences.

Example prompts

  • "Humanize this paragraph, then run detect on the result to verify it."
  • "Rewrite my draft with the humanize tool using my writing style <style-id>."
  • "Check which sentences of this post read as AI-written."

Development

npm install
npm run build
REPHRASY_API_KEY=<key> node dist/index.js   # runs on stdio

License

MIT © Rephrasy