Office Word MCP Server

by GongRzhe
Verified

copy_document

Create a copy of a Word document.

Args: source_filename: Path to the source document destination_filename: Optional path for the copy. If not provided, a default name will be generated.

Input Schema

NameRequiredDescriptionDefault
destination_filenameNo
source_filenameYes

Input Schema (JSON Schema)

{ "properties": { "destination_filename": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Destination Filename" }, "source_filename": { "title": "Source Filename", "type": "string" } }, "required": [ "source_filename" ], "title": "copy_documentArguments", "type": "object" }