npm @rephrasy/mcpstdioMITupdated 1mo ago
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.
O que dá para fazer com Rephrasy?
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 |
|---|---|
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"].
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
Instalação
Adicione Rephrasy ao seu cliente. Escolha o que você usa.
claude mcp add mcp -- npx -y @rephrasy/mcpcodex mcp add mcp -- npx -y @rephrasy/mcpamp mcp add mcp -- npx -y @rephrasy/mcp{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@rephrasy/mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@rephrasy/mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"mcp","command":"npx","args":["-y","@rephrasy/mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@rephrasy/mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@rephrasy/mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@rephrasy/mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@rephrasy/mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@rephrasy/mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @rephrasy/mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Pontuação
39 / 100
Incompleta
- Documentação22/25
- Manutenção16/25
- Confiança13/20
- Capacidade0/15
- Instalação12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 30 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Histórico de versões
| Versões | Publicada |
|---|---|
| 0.1.0Mais recente | 1 de ago. de 2026 |