copy_document
Duplicates a Word document by specifying a source and destination filename for precise file management within the Office Word MCP Server.
Instructions
Create a copy of a Word document.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
destination_filename | No | ||
source_filename | Yes |
Input Schema (JSON Schema)
{
"properties": {
"destination_filename": {
"default": null,
"title": "Destination Filename",
"type": "string"
},
"source_filename": {
"title": "Source Filename",
"type": "string"
}
},
"required": [
"source_filename"
],
"type": "object"
}