Get the FREE Ultimate OpenClaw Setup Guide →

humanizer

A powerful Model Context Protocol (MCP) server that helps refine AI-generated content to sound more natural and human-like. Built with advanced AI detection and text enhancement capabilities.

Installation
Run this command in your terminal to add the MCP server to Claude Code.
Run in terminal:
Command
claude mcp add --transport stdio chongzixuan-ai-humanizer-mcp-server npx -y ai-humanizer-mcp-server \
  --env CLAUDE_DESKTOP_CONFIG="Path to Claude Desktop developer config (optional)"

How to use

This MCP server, AI Humanize, refines AI-generated text to read as natural, human-like writing while preserving key terminology. It combines AI detection with text enhancement, grammar polishing, readability improvements, and length control to produce content that sounds authentic and clear. The server is designed to be integrated with Claude Desktop via MCP, enabling you to swap in a dedicated humanization capability alongside other MCP-powered tools. Use the provided commands to spin up the server through npx for quick trials or via a built-from-source setup if you prefer building locally from the repository. Once running, you can send text through Claude Desktop’s MCP interface and receive a refined version that maintains intended meaning and style while reducing robotic tone and awkward phrasing.

How to install

Prerequisites:

  • Node.js version 16 or higher
  • Claude Desktop (latest)

Option A: Run via npx (quick start)

  1. Ensure Claude Desktop is installed and open.
  2. Install and run the MCP server configuration via npx as described below:

Code snippet (npx):

# Configuration in Claude Desktop (Settings → Developer → Edit Config)
{
  "mcpServers": {
    "ai-humanizer": {
      "command": "npx",
      "args": ["-y", "ai-humanizer-mcp-server"]
    }
  }
}
  1. Restart Claude Desktop to apply changes.

Option B: Run from source code (build locally)

  1. Clone this repository.
  2. Install dependencies:
npm install
  1. Build the project:
npm run build
  1. Configure Claude Desktop to point to the built server:
{
  "mcpServers": {
    "ai-humanizer": {
      "command": "node",
      "args": ["<YOUR_PROJECT_PATH>/build/index.js"]
    }
  }
}
  1. Restart Claude Desktop to apply changes.

Additional notes

Tips and notes:

  • The AI Humanizer aims to preserve domain-specific terminology and key phrases while improving tone, grammar, and readability.
  • If you need to adjust output length, consider adding a length preference or prompt parameters in the underlying server configuration if supported.
  • Ensure your Node.js version matches the prerequisites (>= 16) and that Claude Desktop is the latest version for compatibility with MCP integrations.
  • When running via npx, an internet connection is required to fetch the package; for a production workflow, consider building from source and hosting the built index.js locally.
  • If you encounter environment variable issues, try running with minimal env or explicitly define CLAUDE_DESKTOP_CONFIG to point to your Claude config file.

Related MCP Servers

Sponsor this space

Reach thousands of developers