interactive_edit_session
Initiate an interactive editing session to modify complex files using clear instructions. Part of the Edit-MCP server, enabling precise file operations and refactoring.
Instructions
Start an interactive editing session for complex edits
Input Schema
Name | Required | Description | Default |
---|---|---|---|
files | Yes | List of files to edit | |
instructions | No | Instructions for the editing session |
Input Schema (JSON Schema)
{
"properties": {
"files": {
"description": "List of files to edit",
"type": "array"
},
"instructions": {
"description": "Instructions for the editing session",
"type": "string"
}
},
"required": [
"files"
],
"type": "object"
}