write-text
Write and manage text in Textwell app using three modes: replace, insert, or add content. Integrate via MCP for efficient text operations in your workflow.
Instructions
Write text to Textwell application
Input Schema
Name | Required | Description | Default |
---|---|---|---|
mode | No | replace: overwrite all, insert: at cursor, add: at end | replace |
text | Yes | Content to write to Textwell |
Input Schema (JSON Schema)
{
"properties": {
"mode": {
"default": "replace",
"description": "replace: overwrite all, insert: at cursor, add: at end",
"enum": [
"replace",
"insert",
"add"
],
"type": "string"
},
"text": {
"description": "Content to write to Textwell",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}