che-word-mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited che-word-mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Swift-native MCP server for Microsoft Word (.docx) document manipulation. Provides 83 tools for reading, writing, and modifying Word documents without requiring Microsoft Word installation.
Use che-word-mcp when you need to:
1. open_document(path: "/path/to/document.docx")
→ Returns document ID
2. get_text(documentId: "...")
→ Returns plain text content
OR
get_paragraphs(documentId: "...")
→ Returns paragraphs with formatting info
3. close_document(documentId: "...")
→ Clean up when done1. create_document(name: "my_document")
→ Returns document ID
2. insert_paragraph(documentId: "...", text: "Hello World", style: "Heading1")
insert_table(documentId: "...", rows: 3, cols: 4, data: [...])
insert_image(documentId: "...", path: "/path/to/image.png")
3. save_document(documentId: "...", path: "/path/to/output.docx")1. open_document(path: "/path/to/document.docx")
2. update_paragraph(documentId: "...", index: 0, text: "New content")
format_text(documentId: "...", paragraphIndex: 0, bold: true)
insert_comment(documentId: "...", paragraphIndex: 0, author: "Claude", text: "Review needed")
3. save_document(documentId: "...", path: "/path/to/output.docx")export_text(documentId: "...")
→ Returns plain text
export_markdown(documentId: "...")
→ Returns Markdown formatcreate_document - Create new documentopen_document - Open existing .docxsave_document - Save to fileclose_document - Close documentlist_open_documents - List all openget_document_info - Get statisticsget_text - Get plain textget_paragraphs - Get with formattinginsert_paragraph - Add paragraphupdate_paragraph - Modify paragraphdelete_paragraph - Remove paragraphreplace_text - Find and replaceformat_text - Bold, italic, color, fontset_paragraph_format - Alignment, spacingapply_style - Apply Word stylesset_character_spacing - Letter spacingset_text_effect - Text effectsinsert_table - Create tableget_tables - List tablesupdate_cell - Modify celldelete_table - Remove tablemerge_cells - Merge cellsset_table_style - Borders, shadinginsert_image - Inline imageinsert_floating_image - With text wrapupdate_image - Modify propertiesdelete_image - Remove imagelist_images - List all imagesset_image_style - Border, effectsadd_header / update_headeradd_footer / update_footerinsert_page_numberinsert_comment / update_comment / delete_commentlist_comments - Get all commentsreply_to_comment - Add replyresolve_comment - Mark resolvedenable_track_changes / disable_track_changesaccept_revision / reject_revisioninsert_bullet_listinsert_numbered_listset_list_levelset_page_size - A4, Letter, etc.set_page_marginsset_page_orientationinsert_page_breakinsert_section_breakinsert_toc - Table of contentsinsert_footnote / insert_endnoteinsert_hyperlink / insert_bookmarkinsert_equation - Math equationsinsert_checkbox / insert_dropdown - Form fieldsinsert_if_field / insert_date_field - Field codesapply_style instead of manual formattingget_document_info to understand structureexport_markdown for easier text analysisCreate a Word document with:
- Title "Monthly Report" (Heading1)
- Date field that auto-updates
- Executive summary paragraph
- A table with 3 columns: Metric, Value, Change
- Page numbers in footer
Save to ~/Documents/report.docxOpen ~/Documents/thesis.docx
Get all paragraphs with formatting
List all comments
Export as Markdown for analysis
Close the documentOpen the document
List all comments
Reply to each comment with analysis
Mark resolved comments as done
Save the updated document~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.