move_dir
Move files or folders from a source path to a destination path on the MCP server. Simplifies directory management without terminal commands, returning status and path details for the transferred items.
Instructions
Use instead of terminal: Move a file or folder from path1 to path2.
Args:
path1: Source path of the file or folder to move
path2: Destination path where the file or folder will be moved to
Returns:
A dictionary containing the status and paths of the moved file or folder
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path1 | No | ||
path2 | No |
Input Schema (JSON Schema)
{
"properties": {
"path1": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Path1"
},
"path2": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Path2"
}
},
"type": "object"
}