word-mcp-live
by ykarapazar·★ 86·Score 49
MCP server with 124 tools for Microsoft Word including live editing, tracked changes, and cross-platform functionality.
Overview
word-mcp-live provides comprehensive control over Microsoft Word through the MCP protocol, allowing AI assistants to perform document manipulation tasks while documents are open. It supports both cross-platform operations using python-docx and native live editing on Windows (via COM automation) and macOS (via JXA automation). The server offers advanced features like tracked changes with proper attribution, threaded comments, per-action undo capabilities, and layout diagnostics.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this when you need AI to interact with Microsoft Word documents, especially for live editing, tracked changes, or when working with existing Word workflows requiring immediate visual feedback.
When NOT to choose this
Don't choose this if you need support for non-Microsoft document formats, if you're on Linux and require live editing, or if you need document processing without having Microsoft Word installed.
Tools this server exposes
12 tools extracted from the READMEget_document_textReads text content from a Word document
word_live_replace_textReplaces text in a live Word document with tracked changes
add_commentAdds a comment anchored to specific text in a Word document
set_heading_styleApplies heading styles to text in a Word document
insert_table_of_contentsInserts a table of contents based on document headings
set_page_layoutConfigures page layout settings in a Word document
add_header_footerAdds headers and footers to a Word document
insert_cross_referenceInserts cross-references to headings, figures, or tables
track_changes_accept_allAccepts all tracked changes in a Word document
insert_tableInserts a new table into a Word document
word_live_format_textApplies formatting to text in a live Word document
add_equationInserts mathematical equations into a Word document
Comparable tools
Installation
Install the package:
pip install word-mcp-liveAdd to your Claude Desktop configuration (claude_desktop_config.json):
{
"mcpServers": {
"word": {
"command": "uvx",
"args": ["word-mcp-live"],
"env": {
"MCP_AUTHOR": "Your Name",
"MCP_AUTHOR_INITIALS": "YN"
}
}
}
}FAQ
- Does this work with Microsoft Word on Linux?
- The cross-platform mode works on Linux, but live editing requires either Windows (COM) or macOS (JXA), as there's no native Word application for Linux.
- How do I configure the author name for tracked changes?
- Set the environment variables MCP_AUTHOR and MCP_AUTHOR_INITIALS in your MCP server configuration. The default author name is 'Author'.
Compare word-mcp-live with
Last updated · Auto-generated from public README + GitHub signals.