Official Model Context Protocol server for HumanTone. Humanize AI-generated text and check AI likelihood directly from Claude Desktop, Cursor, Cline, and other MCP clients.
Overview
What it does
humantone-mcp brings HumanTone's text humanizer and AI likelihood indicator directly into your AI assistant. Once configured, you can ask Claude Desktop, Cursor, VSCode, or any MCP-compatible client to humanize text and check AI likelihood without leaving the chat.
Three tools
- humanize. Rewrite text to sound more natural and human-written. Supports custom instructions for tone, audience, and terminology.
- detect_ai. Check AI likelihood of text (0 to 100). Free, 30 checks per day.
- get_account. View current plan, credits, and subscription status.
Quick setup (Claude Desktop)
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"humantone": {
"command": "npx",
"args": ["-y", "humantone-mcp"],
"env": {
"HUMANTONE_API_KEY": "ht_your_api_key_here"
}
}
}
}
Get your API key at https://app.humantone.io/settings/api. API access is included on all paid plans (Basic, Standard, Pro).
Usage
Once configured, talk to your assistant naturally. Mentioning humantone in your message helps the model reliably route to the MCP tool.
Use humantone to rewrite this draft: [paste your text]
Use humantone's AI detector to score this paragraph: [paste your text]
How many HumanTone credits do I have?
Requirements
Node.js 18 or later. A paid HumanTone plan with API access.
Links
- Full docs: https://humantone.io/docs/mcp/
- API docs: https://humantone.io/docs/api/
- npm: https://www.npmjs.com/package/humantone-mcp
- GitHub: https://github.com/humantone/humantone-mcp
- Get an API key: https://app.humantone.io/settings/api
Server Config
{
"mcpServers": {
"humantone": {
"command": "npx",
"args": [
"-y",
"humantone-mcp"
],
"env": {
"HUMANTONE_API_KEY": "ht_your_api_key_here"
}
}
}
}