custom_enhance_text
Improve story text with targeted techniques like Golden Shadow, Environmental expansion, and Prose Smoothing to achieve desired enhancement levels with UNO-MCP.
Instructions
Enhances a story page using selected techniques
Input Schema
Name | Required | Description | Default |
---|---|---|---|
enableActionScene | No | Enable Action Scene enhancement | |
enableEnvironmental | No | Enable Environmental expansion | |
enableGoldenShadow | No | Enable Golden Shadow enhancement | |
enableProseSmoother | No | Enable Prose Smoothing | |
enableRepetitionElimination | No | Enable Repetition Elimination | |
expansionTarget | No | Target expansion percentage (default: 200) | |
text | Yes | The story page text to enhance |
Input Schema (JSON Schema)
{
"properties": {
"enableActionScene": {
"default": true,
"description": "Enable Action Scene enhancement",
"type": "boolean"
},
"enableEnvironmental": {
"default": true,
"description": "Enable Environmental expansion",
"type": "boolean"
},
"enableGoldenShadow": {
"default": true,
"description": "Enable Golden Shadow enhancement",
"type": "boolean"
},
"enableProseSmoother": {
"default": true,
"description": "Enable Prose Smoothing",
"type": "boolean"
},
"enableRepetitionElimination": {
"default": true,
"description": "Enable Repetition Elimination",
"type": "boolean"
},
"expansionTarget": {
"description": "Target expansion percentage (default: 200)",
"maximum": 500,
"minimum": 100,
"type": "number"
},
"text": {
"description": "The story page text to enhance",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}