@gptscrambler/mcp-server
v1.1.0
Published
MCP server for GPT Scrambler — humanize AI text in Claude Desktop, Cursor, and other MCP clients
Maintainers
Readme
@gptscrambler/mcp-server
MCP server for GPT Scrambler — humanize AI-generated text directly in Claude Desktop, Cursor, or any MCP-compatible AI agent.
Requirements
- Node.js 18+
- A GPT Scrambler API key (get one here)
Installation
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"gpt-scrambler": {
"command": "npx",
"args": ["-y", "@gptscrambler/mcp-server"],
"env": {
"GPTSCRAMBLER_API_KEY": "sk_live_your_key_here"
}
}
}
}Cursor
Add to .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):
{
"mcpServers": {
"gpt-scrambler": {
"command": "npx",
"args": ["-y", "@gptscrambler/mcp-server"],
"env": {
"GPTSCRAMBLER_API_KEY": "sk_live_your_key_here"
}
}
}
}Restart Claude Desktop after saving. Cursor usually picks up config changes automatically.
Environment variables
| Variable | Required | Description |
| --- | --- | --- |
| GPTSCRAMBLER_API_KEY | Yes | Bearer API key from Settings → API Access |
| GPTSCRAMBLER_API_URL | No | API base URL (default: https://gptscrambler.com) |
Tools
humanize_text
Humanize AI-generated text to bypass AI detectors (Turnitin, GPTZero, Copyleaks).
| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| text | string | Yes | Text to humanize (10–3,000 words) |
| language | string | No | Language hint, e.g. en, de |
| mode | standard | aggressive | No | Rewrite strength (default: standard) |
get_balance
Returns remaining word balance, plan, and reset date (same as GET /api/v1/balance).
Pricing
- Free trial: 200 words for API/MCP only (separate from web balance, one-time)
- API Plan: $49.99/month — 100,000 words
Development
npm ci
npm run build
GPTSCRAMBLER_API_KEY=sk_live_... GPTSCRAMBLER_API_URL=https://gptscrambler.com npm run test:mcpLinks
License
MIT — see LICENSE.
