AiDD MCP Server

move_file

Move or rename a file or directory to a new location. This tool can be used to reorganize files and directories. Both source and destination must be within the allowed directory. If the destination already exists, the operation will fail. Parent directories of the destination will be created if they don't exist. Example: source='old.txt', destination='new/path/new.txt'

Input Schema

NameRequiredDescriptionDefault
destinationYesDestination path where to move the file or directory
sourceYesSource path of the file or directory to move

Input Schema (JSON Schema)

{ "properties": { "destination": { "description": "Destination path where to move the file or directory", "type": "string" }, "source": { "description": "Source path of the file or directory to move", "type": "string" } }, "required": [ "source", "destination" ], "type": "object" }