Office Word MCP Server

by GongRzhe
Verified

delete_paragraph

Delete a paragraph from a document.

Args: filename: Path to the Word document paragraph_index: Index of the paragraph to delete (0-based)

Input Schema

NameRequiredDescriptionDefault
filenameYes
paragraph_indexYes

Input Schema (JSON Schema)

{ "properties": { "filename": { "title": "Filename", "type": "string" }, "paragraph_index": { "title": "Paragraph Index", "type": "integer" } }, "required": [ "filename", "paragraph_index" ], "title": "delete_paragraphArguments", "type": "object" }