Word Create
word_createCreates a new Word (.docx) document at path with the given text content (and an optional title rendered as the heading). Requires confirm=true — called without it, returns a preview of what will be written instead of creating the file. The path must be somewhere Local MCP can write; Desktop/Documents/Downloads may need a one-time Files-and-Folders grant (System Settings → Privacy & Security → Files and Folders). Returns {created, path}. For a OneDrive or Google Drive path use onedrive_write_file / gdrive_write_file; to append to an existing doc use word_append, to read one word_read.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Output path for the .docx file | |
| title | No | Document title (optional) | |
| confirm | No | Must be true to create | |
| content | Yes | Document text content |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Path of the created .docx file | |
| created | Yes | True when the document was created |