Office Word MCP Server

by GongRzhe
Verified

add_paragraph

Add a paragraph to a Word document.

Args: filename: Path to the Word document text: Paragraph text style: Optional paragraph style name

Input Schema

NameRequiredDescriptionDefault
filenameYes
styleNo
textYes

Input Schema (JSON Schema)

{ "properties": { "filename": { "title": "Filename", "type": "string" }, "style": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Style" }, "text": { "title": "Text", "type": "string" } }, "required": [ "filename", "text" ], "title": "add_paragraphArguments", "type": "object" }