Draft revision
Rewrite stiff passages during an active drafting session, then ask the assistant for a side-by-side editorial review.
MCP integration
Rewrite supplied text inside your assistant while preserving the active task and context.
claude mcp add --transport http --scope user \
--header "Authorization: Bearer YOUR_API_KEY" \
detecting-ai https://api.detecting-ai.com/api/mcpAn AI Humanizer MCP server lets a compatible assistant send user-provided text to a focused rewriting tool. The result comes back to the same conversation, where the user can review, compare, or revise it without building a custom REST integration.

The user supplies text and asks for a more natural rewrite. The client calls the Detecting AI humanizer tool with the chosen model. The server validates the subscription and word balance, processes the text, records usage, and returns a new version for review in the same conversation.
humanize_text: Rewrites user-supplied text in a more natural style and returns editable output.
| Input | Type | Status | Description |
|---|---|---|---|
text | string | Required | The text to rewrite. |
model | string | Optional | Humanizer model. The default is cognia. |
Connect through Streamable HTTP with an Authorization bearer header. Client support and configuration formats can vary by version.
MCP works best when the assistant needs a focused external tool as part of a user-controlled workflow.
Rewrite stiff passages during an active drafting session, then ask the assistant for a side-by-side editorial review.
Turn approved source material into clearer help content while keeping the result in the same agent workflow for review.
Humanize supplied marketing or educational drafts before the normal editing, fact-checking, and approval process.
Store your Detecting AI API key in an environment variable and configure the public MCP URL. Codex reads the bearer token from the named variable.
https://api.detecting-ai.com/api/mcpexport DETECTING_AI_API_KEY="YOUR_API_KEY"
[mcp_servers.detecting_ai]
url = "https://api.detecting-ai.com/api/mcp"
bearer_token_env_var = "DETECTING_AI_API_KEY"
tool_timeout_sec = 180It is a remote MCP server that gives compatible assistants access to a dedicated text humanization tool through a standard protocol.
The tool supports cognia, lexi, cognia_v2, and huma_v2. Cognia is the default for new calls.
Yes. The humanized text is returned to the client as editable output. You should review it for meaning, facts, tone, and policy requirements.
Yes. Claude Code and Codex can connect to the public Streamable HTTP endpoint with your Detecting AI API key.
Successful calls deduct the input word count from the same humanizer balance used by the Detecting AI REST API.
Create an API key, connect the public MCP endpoint, and keep control of every tool call from the active conversation.