File Edit Check MCP Server

checked_apply_diff

Apply a diff to a file, requiring it to have been read first

Input Schema

NameRequiredDescriptionDefault
diffYesUnified diff content to apply
pathYesPath to the file to modify

Input Schema (JSON Schema)

{ "properties": { "diff": { "description": "Unified diff content to apply", "type": "string" }, "path": { "description": "Path to the file to modify", "type": "string" } }, "required": [ "path", "diff" ], "type": "object" }