Rephrasy
OfficialThis server integrates Rephrasy's text humanization and AI detection into your editor or agent workflow.
Humanize text: Rewrite AI-generated content to sound natural and human-like, preserving meaning. Specify a model (default:
v3), a custom writing style from your account, and an output language hint. Returns the humanized text and the word count charged.Detect AI-written text: Score how likely a text is to be flagged as AI-written. Returns an overall AI-likelihood score (lower = more human-like). Supports up to 15,000 characters, with optional per-sentence scoring.
Chain both tools: Humanize a draft, then run detection to verify it passes AI checks.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@RephrasyHumanize this paragraph, then run detect on the result to verify it."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Rephrasy MCP Server
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 |
| Rewrites AI-generated text in a natural, human style while preserving meaning |
| 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/mcpClaude 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 |
| string | yes | The text to humanize |
| string | no | Rephrasy model, default |
| string | no | Writing-style ID from your account to mimic a specific voice |
| string | no | Output language hint (e.g. |
Returns the rewritten text plus the number of words charged.
detect
Parameter | Type | Required | Description |
| string | yes | The text to score (max 15,000 characters) |
| boolean | no | If |
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 stdioLicense
MIT © Rephrasy
Maintenance
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
AlicenseCqualityDmaintenanceIntegrates 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 updated283Apache 2.0- Alicense-qualityDmaintenanceAI text detection and humanization for Claude Code, Cursor, and Windsurf. Check if text sounds AI-generated, improve it to read naturally, and verify results — all without leaving your editor.Last updated55MIT
- Alicense-qualityCmaintenanceOffline 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 updatedMIT

humantone-mcpofficial
Alicense-qualityBmaintenanceOfficial MCP server for HumanTone, enabling AI text humanization and AI likelihood detection directly from MCP clients like Claude Desktop and Cursor.Last updated293MIT
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.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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