MCP Documentation Service

by alekspetrov
Verified

move_document

Move a document from one location to another. Optionally updates references to the document in other files.

Input Schema

NameRequiredDescriptionDefault
destinationPathYes
pathNo
sourcePathYes
updateReferencesNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "destinationPath": { "type": "string" }, "path": { "type": "string" }, "sourcePath": { "type": "string" }, "updateReferences": { "default": true, "type": "boolean" } }, "required": [ "sourcePath", "destinationPath" ], "type": "object" }