Skip to main content
Glama
rephrasyai

Rephrasy

Official
by rephrasyai

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"].

Related MCP server: humantext-mcp-server

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

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

License

MIT © Rephrasy

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    C
    quality
    D
    maintenance
    Integrates AI safety analysis, red-teaming, and prompt auditing directly into MCP-compatible clients like Claude Desktop and Cursor IDE, allowing real-time analysis of prompts and detection of jailbreak attempts.
    Last updated
    28
    3
    Apache 2.0
  • A
    license
    -
    quality
    C
    maintenance
    Offline spell check and BYOK grammar checking for AI assistants. 100% offline spell check via nspell (zero tokens, zero API calls). BYOK grammar checking with your own Gemini, OpenAI, or Claude API key. Works with Claude Desktop, Cursor, ChatGPT, and any MCP-compatible tool. 8 languages supported.
    Last updated
    MIT
  • A
    license
    -
    quality
    B
    maintenance
    Official MCP server for HumanTone, enabling AI text humanization and AI likelihood detection directly from MCP clients like Claude Desktop and Cursor.
    Last updated
    29
    3
    MIT

View all related MCP servers

Related MCP Connectors

  • Read and write your Fresh Jots notes from Claude, Cursor, and any MCP client.

  • User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.

  • Brivvy MCP (OAuth): on-brand AI content, voice rules, templates, glossary.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/rephrasyai/rephrasy-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server