MCP-PIF Server

move

Move a file or directory to a new location

Input Schema

NameRequiredDescriptionDefault
sourcePathYesSource path of the file or directory to move
targetPathYesTarget path where the file or directory will be moved to

Input Schema (JSON Schema)

{ "properties": { "sourcePath": { "description": "Source path of the file or directory to move", "type": "string" }, "targetPath": { "description": "Target path where the file or directory will be moved to", "type": "string" } }, "required": [ "sourcePath", "targetPath" ], "type": "object" }