Office Word MCP Server

by GongRzhe
Verified

format_text

Format a specific range of text within a paragraph.

Args: filename: Path to the Word document paragraph_index: Index of the paragraph (0-based) start_pos: Start position within the paragraph text end_pos: End position within the paragraph text bold: Set text bold (True/False) italic: Set text italic (True/False) underline: Set text underlined (True/False) color: Text color (e.g., 'red', 'blue', etc.) font_size: Font size in points font_name: Font name/family

Input Schema

NameRequiredDescriptionDefault
boldNo
colorNo
end_posYes
filenameYes
font_nameNo
font_sizeNo
italicNo
paragraph_indexYes
start_posYes
underlineNo

Input Schema (JSON Schema)

{ "properties": { "bold": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "default": null, "title": "Bold" }, "color": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Color" }, "end_pos": { "title": "End Pos", "type": "integer" }, "filename": { "title": "Filename", "type": "string" }, "font_name": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Font Name" }, "font_size": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": null, "title": "Font Size" }, "italic": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "default": null, "title": "Italic" }, "paragraph_index": { "title": "Paragraph Index", "type": "integer" }, "start_pos": { "title": "Start Pos", "type": "integer" }, "underline": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "default": null, "title": "Underline" } }, "required": [ "filename", "paragraph_index", "start_pos", "end_pos" ], "title": "format_textArguments", "type": "object" }