File Operations MCP Server

copy_file

Copy a file to a new location

Input Schema

NameRequiredDescriptionDefault
destinationYesDestination file path
overwriteNoWhether to overwrite existing file
sourceYesSource file path

Input Schema (JSON Schema)

{ "properties": { "destination": { "description": "Destination file path", "type": "string" }, "overwrite": { "default": false, "description": "Whether to overwrite existing file", "type": "boolean" }, "source": { "description": "Source file path", "type": "string" } }, "required": [ "source", "destination" ], "type": "object" }