Word Live MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Word Live MCP ServerFind all mentions of 'confidential'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Word Live MCP Server
A Windows MCP (Model Context Protocol) server that attaches to a running Microsoft Word instance via COM automation and exposes 20 tools for reading, editing, formatting, and exporting documents — live on screen.
The Word counterpart to the PowerPoint Live MCP.
How It Works
The server attaches to the running Word.Application instance via win32com (pywin32). Because it talks to the live COM object, every edit appears instantly on the Word canvas — no file round-trip, no reopen.
Related MCP server: mcp-word-processor
Tools (20)
Category | Tool | Description |
Discovery |
| List all open Word documents |
| Details of active document (name, path, word/para count) | |
Read |
| Paginated paragraph listing with styles |
| Full text + formatting of one paragraph | |
| All cell content from a table | |
| Current cursor/selection state | |
| Full-text search with paragraph locations | |
Edit |
| Replace text of a paragraph |
| Insert new paragraph after a given index | |
| Delete a paragraph | |
| Find-and-replace throughout document | |
Format |
| Font size/bold/italic/color/name |
| Yellow/red/green/none highlight | |
| Apply named style (Heading 1, Normal, etc.) | |
Tables |
| Set cell text by (row, column) |
| Insert a new table | |
Export |
| Export document to PDF |
| Export single page as PNG (via PDF render) | |
Other |
| Update all Tables of Contents |
| Save the document |
Requirements
Windows + Microsoft Word installed
Python 3.11+ with these packages:
pip install pywin32 mcp pymupdfRun
python Scripts/pywin32_postinstall.py -installonce after installing pywin32.
Installation
Hermes Agent
Add to ~/.hermes/config.yaml:
mcp_servers:
word:
command: "C:/Users/You/AppData/Local/Programs/Python/Python313/python.exe"
args: ["C:/path/to/word-live-mcp/server.py"]
connect_timeout: 30
enabled: true
timeout: 90Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"word": {
"command": "python",
"args": ["C:/path/to/word-live-mcp/server.py"]
}
}
}Generic MCP Client
The server communicates over stdio using the MCP protocol. Any MCP-compatible client can connect by spawning the server process.
Usage
Word must be running with a document open. Tools operate on the active document by default; pass doc="filename.docx" to target a specific open document.
Paragraph and table indices are 1-indexed (matching what you see in Word).
Example workflows
"Read me paragraph 5" →
get_paragraph(paragraph_index=5)"Find all mentions of 'confidential'" →
find_text(find="confidential")"Replace 'old term' with 'new term'" →
replace_text(find="old term", replace="new term")"Highlight paragraph 20 in yellow" →
set_highlight(paragraph_index=20, color="yellow")"Show me what page 3 looks like" →
export_page_image(page=3)"Set paragraph 10 font to bold red" →
set_font(paragraph_index=10, bold=True, color_rgb="FF0000")
Architecture
COM session per call: Each tool call re-initialises COM (
pythoncom.CoInitialize) and dispatchesWord.Application, which transparently reconnects to the running instance.appparameter injection: Theword_tooldecorator injects the COM app handle as the first argument, but strips it from the public signature so FastMCP doesn't expose it.Graceful errors: All exceptions are caught and returned as
{"error": "...", "traceback": "..."}JSON dicts — never crash the server.1-indexed: Paragraph and table indices match what the user sees in Word.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kennypeh85/word-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server