read_document
Read content from a DOCX file, returning paragraphs with indices, styles, and formatting hints. Control reading range with start and end paragraph parameters, and optionally view tracked changes as annotations.
Instructions
Read the content of a DOCX file. Returns paragraphs with indices, styles, and formatting hints. Use start_paragraph/end_paragraph for large documents. Use show_revisions to see tracked changes annotations.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | Absolute path to the .docx file | |
| start_paragraph | No | Start reading from this block index (inclusive) | |
| end_paragraph | No | Stop reading at this block index (exclusive) | |
| show_revisions | No | Show tracked changes with annotations: [-deleted-] and [+inserted+]. Default false shows accepted text only. |