Office Word MCP Server

by GongRzhe
Verified

create_document

Create a new Word document with optional metadata.

Args: filename: Name of the document to create (with or without .docx extension) title: Optional title for the document metadata author: Optional author for the document metadata

Input Schema

NameRequiredDescriptionDefault
authorNo
filenameYes
titleNo

Input Schema (JSON Schema)

{ "properties": { "author": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Author" }, "filename": { "title": "Filename", "type": "string" }, "title": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Title" } }, "required": [ "filename" ], "title": "create_documentArguments", "type": "object" }