Skip to main content
ClaudeWave

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

MCP ServersOfficial Registry0 stars0 forksJavaScriptMITUpdated today
Install in Claude Code / Claude Desktop
Method: NPX · @rephrasy/mcp
Claude Code CLI
claude mcp add rephrasy-mcp -- npx -y @rephrasy/mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "rephrasy-mcp": {
      "command": "npx",
      "args": ["-y", "@rephrasy/mcp"],
      "env": {
        "REPHRASY_API_KEY": "<rephrasy_api_key>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Detected environment variables
REPHRASY_API_KEY
Use cases

MCP Servers overview

# Rephrasy MCP Server

[![npm](https://img.shields.io/npm/v/@rephrasy/mcp)](https://www.npmjs.com/package/@rephrasy/mcp)

Use [Rephrasy](https://rephrasy.ai) 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](https://rephrasy.ai) → Account → API. Both tools bill against your Rephrasy plan.

**2. Add the server to your client:**

### Claude Code

```bash
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):

```json
{
  "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):

```json
{
  "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`

| Parameter | Type | Required | Description |
|---|---|---|---|
| `text` | string | yes | The text to humanize |
| `model` | string | no | Rephrasy model, default `"v3"` |
| `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.

### `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

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

## License

MIT © Rephrasy

What people ask about rephrasy-mcp

What is rephrasyai/rephrasy-mcp?

+

rephrasyai/rephrasy-mcp is mcp servers for the Claude AI ecosystem. MCP server for Rephrasy — humanize AI text and check AI-detection scores from Claude, Cursor, or any MCP client. It has 0 GitHub stars and was last updated today.

How do I install rephrasy-mcp?

+

You can install rephrasy-mcp by cloning the repository (https://github.com/rephrasyai/rephrasy-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is rephrasyai/rephrasy-mcp safe to use?

+

rephrasyai/rephrasy-mcp has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.

Who maintains rephrasyai/rephrasy-mcp?

+

rephrasyai/rephrasy-mcp is maintained by rephrasyai. The last recorded GitHub activity is from today, with 0 open issues.

Are there alternatives to rephrasy-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy rephrasy-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: rephrasyai/rephrasy-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/rephrasyai-rephrasy-mcp)](https://claudewave.com/repo/rephrasyai-rephrasy-mcp)
<a href="https://claudewave.com/repo/rephrasyai-rephrasy-mcp"><img src="https://claudewave.com/api/badge/rephrasyai-rephrasy-mcp" alt="Featured on ClaudeWave: rephrasyai/rephrasy-mcp" width="320" height="64" /></a>

More MCP Servers

rephrasy-mcp alternatives