Back to Browse

Rephrasy MCP Server

Developer ToolsModerate5.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

Humanize AI text and check AI-detection scores from Claude, Cursor, or any MCP client.

About

Humanize AI text and check AI-detection scores from Claude, Cursor, or any MCP client.

Security Report

5.2
Moderate5.2Moderate Risk

This is a well-structured MCP server with proper authentication, no malicious patterns, and appropriate permissions for its purpose. The server requires an API key for all operations, validates inputs with Zod, handles errors gracefully, and makes only necessary network calls to the Rephrasy API. Minor code quality observations exist but do not constitute security vulnerabilities. Supply chain analysis found 3 known vulnerabilities in dependencies (0 critical, 3 high severity). Package verification found 1 issue.

3 files analyzed · 6 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

What You'll Need

Set these up before or after installing:

Rephrasy API key from your account (rephrasy.ai → Account → API).Required

Environment variable: REPHRASY_API_KEY

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-rephrasyai-rephrasy-mcp": {
      "env": {
        "REPHRASY_API_KEY": "your-rephrasy-api-key-here"
      },
      "args": [
        "-y",
        "@rephrasy/mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub 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:

ToolWhat it does
humanizeRewrites AI-generated text in a natural, human style while preserving meaning
detectScores 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"].

Tools

humanize

ParameterTypeRequiredDescription
textstringyesThe text to humanize
modelstringnoRephrasy model, default "v3"
stylestringnoWriting-style ID from your account to mimic a specific voice
languagestringnoOutput language hint (e.g. "en", "de"); defaults to input language

Returns the rewritten text plus the number of words charged.

detect

ParameterTypeRequiredDescription
textstringyesThe text to score (max 15,000 characters)
per_sentencebooleannoIf 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

Reviews

No reviews yet

Be the first to review this server!