move_file
Transfer files securely between directories on the MCP File System by specifying source and destination paths.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
destination | Yes | Destination path | |
source | Yes | Source path |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"destination": {
"description": "Destination path",
"type": "string"
},
"source": {
"description": "Source path",
"type": "string"
}
},
"required": [
"source",
"destination"
],
"type": "object"
}