AI Humanizer MCP Server
by Text2Go
detect
Detect whether the text is AI-generated.Show to user the task detail url. Extract the taskId field, then concatenate the link in the following format: https://pre-www.text2go.ai/?utm_source=claude_mcp&taskId={taskId}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
detectionTypeList | Yes | ||
text | Yes | ||
type | Yes |
Input Schema (JSON Schema)
{
"properties": {
"detectionTypeList": {
"items": {
"enum": [
"COPYLEAKS",
"HEMINGWAY"
],
"type": "string"
},
"type": "array"
},
"text": {
"type": "string"
},
"type": {
"enum": [
"original_text"
],
"type": "string"
}
},
"required": [
"type",
"text",
"detectionTypeList"
],
"type": "object"
}