word-mcp-codemode-live
Windows-first Code Mode MCP server for editing Microsoft Word documents. It exposes a compact discovery and execution interface over file-based DOCX tools and live Word automation instead of loading the entire tool catalog into an agent context.
This project is currently beta software.
Install
Python 3.10 or newer is required. Run the published package in an isolated
environment with uvx:
{
"mcpServers": {
"word": {
"command": "uvx",
"args": ["word-mcp-codemode-live"],
"env": {
"MCP_AUTHOR": "Your Name",
"MCP_AUTHOR_INITIALS": "YN"
}
}
}
}
To install the command permanently:
uv tool install word-mcp-codemode-live
word-mcp-codemode-live
Live editing requires Microsoft Word on Windows. pywin32 drives Word, and
PyMuPDF renders Word's PDF output into page images for visual verification.
Modes
- Code Mode is the default. Clients see
search,get_schema,execute, and the two image-producing workflow tools (word_live_edit_batchandword_live_capture_pages). The rest of the catalog is discovered on demand. MCP_TOOL_MODE=fullexposes the complete catalog for development and diagnostics.- Closed-file tools are limited to create, copy, list, body-only metadata, and PDF export. Editing uses Word's native object model.
- Windows live tools automate an open Word instance through COM.
word_live_list_footnotes_endnotesandword_live_edit_footnotes_endnotesinspect and mutate genuine Word footnotes and endnotes through Word itself.word_live_get_headers_footersinspects every section and primary/first/even story.word_live_edit_headers_footersedits one story at a time with page fields, linkage, Arabic/Roman/letter numbering, restart values, alignment, and font styling.word_live_edit_batchgroups multiple edits into one Undo action, verifies factual text/page assertions, saves once, and can return rendered affected pages. Rollback occurs only when Word confirms the batch is its latest Undo entry.word_live_capture_pagesreturns page images rendered by Word itself.
Reviewed scope
The full development catalog currently contains 78 reviewed tools. The main live families cover text and paragraph formatting, lists, tables, comments, tracked revisions, images, equations, native notes, page layout, section breaks, headers/footers/page numbering, bookmarks, watermarks, Undo, opening, saving, safe close, verified rename/move operations, and rendered-page verification.
The server now includes native Word fields, tables of contents, hyperlinks, cross-reference discovery/insertion, explicit page-break insertion, native heading numbering, Modern Comment resolve/reopen, custom style management, outline and highlight inspection, note configuration, objective layout inspection, field unlinking, native file insertion, persisted semantic snapshots and diffing, and validated Word UI navigation. Misleading or lossy inherited tools remain absent.
Transports
The server supports two transports:
stdiois the default and the normal choice for a local MCP client.httpis opt-in for clients that need a network endpoint.
HTTP binds to loopback by default. This server can read and modify local files and open Word documents, so do not expose it to an untrusted network without an authentication boundary.
Configuration
| Variable | Default | Purpose |
|---|---|---|
MCP_AUTHOR |
Author |
Author for comments and tracked changes |
MCP_AUTHOR_INITIALS |
empty | Comment author initials |
MCP_TOOL_MODE |
code |
code for Code Mode or full for the raw catalog |
MCP_TRANSPORT |
stdio |
stdio or http |
MCP_HOST |
127.0.0.1 |
HTTP bind address |
MCP_PORT |
8000 |
HTTP bind port |
MCP_PATH |
/mcp |
HTTP endpoint path |
Development
git clone https://github.com/chikingsley/word-mcp-codemode-live.git
cd word-mcp-codemode-live
uv sync
uv run ruff check .
uv run ruff format --check .
uv run ty check
uv run vulture
uv run pytest
uv build --no-sources
uv run python .github/ci/verify_built_wheel.py
Run the complete Microsoft Word integration suite on a Windows machine with Word installed:
uv run python tests/integration/word_live_suite.py
This exhaustive live-Word test uses disposable documents in a private Word instance. By default, its Markdown and JSON results are written to the system temporary directory, not the repository.
Pull requests and pushes to main run the same checks on Windows, including an
isolated install of the built wheel. PyPI publication runs only for a v* tag
that exactly matches the version in pyproject.toml, using PyPI Trusted
Publishing rather than a stored API token. Configure the pypi GitHub
environment and the repository's pending Trusted Publisher on PyPI before the
first release. Then bump and tag the release:
uv version --bump patch
git add pyproject.toml uv.lock
git commit -m "release: bump version"
git push origin main
git tag "v$(uv version --short)"
git push origin "v$(uv version --short)"
Source lives under src/word_mcp_codemode_live/. Tool implementations are
grouped by domain in flat modules under tools/, lower-level Word and OOXML operations live in
core/, and each tool carries its FastMCP metadata beside its implementation.
FastMCP's filesystem provider discovers the tool modules used by Code Mode.
Acknowledgments
Forked from ykarapazar/word-mcp-live, which was built from GongRzhe/Office-Word-MCP-Server.
License
MIT. See LICENSE.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file word_mcp_codemode_live-0.1.2.tar.gz.
File metadata
- Download URL: word_mcp_codemode_live-0.1.2.tar.gz
- Upload date:
- Size: 102.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
442524eb9adbd869635465e89075c8cf412be56be1899cc1aa2d5f0309693da2
|
|
| MD5 |
76d4d0067278fc47482e3efe48a86c25
|
|
| BLAKE2b-256 |
4e21665733003b842765eaa9ac6f8f4d6cdca93840ad1f739496883e4af90dc3
|
Provenance
The following attestation bundles were made for word_mcp_codemode_live-0.1.2.tar.gz:
Publisher:
publish.yml on chikingsley/word-mcp-codemode-live
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
word_mcp_codemode_live-0.1.2.tar.gz -
Subject digest:
442524eb9adbd869635465e89075c8cf412be56be1899cc1aa2d5f0309693da2 - Sigstore transparency entry: 2677671219
- Sigstore integration time:
-
Permalink:
chikingsley/word-mcp-codemode-live@1778785aca9dfc31e70ee73683f7c91cffbbcc72 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/chikingsley
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1778785aca9dfc31e70ee73683f7c91cffbbcc72 -
Trigger Event:
push
-
Statement type:
File details
Details for the file word_mcp_codemode_live-0.1.2-py3-none-any.whl.
File metadata
- Download URL: word_mcp_codemode_live-0.1.2-py3-none-any.whl
- Upload date:
- Size: 128.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23be3a08c9432fe23e1277cc86fbfe90947ee7c774c63c1cae55371191f47db7
|
|
| MD5 |
80853834b7e0d43a9c277f58f4f1baba
|
|
| BLAKE2b-256 |
ef14d65c257c50e8adb91db33bac68c97aaf58baca21d59fe15b8c29b44c633a
|
Provenance
The following attestation bundles were made for word_mcp_codemode_live-0.1.2-py3-none-any.whl:
Publisher:
publish.yml on chikingsley/word-mcp-codemode-live
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
word_mcp_codemode_live-0.1.2-py3-none-any.whl -
Subject digest:
23be3a08c9432fe23e1277cc86fbfe90947ee7c774c63c1cae55371191f47db7 - Sigstore transparency entry: 2677671322
- Sigstore integration time:
-
Permalink:
chikingsley/word-mcp-codemode-live@1778785aca9dfc31e70ee73683f7c91cffbbcc72 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/chikingsley
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1778785aca9dfc31e70ee73683f7c91cffbbcc72 -
Trigger Event:
push
-
Statement type: