Office-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., "@Office-MCP-ServerReplace 'draft' with 'final' in proposal.docx using tracked changes."
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.
Office-MCP-Server
A unified MCP server for Word, PowerPoint, and Excel. PowerPoint and Excel are planned for later phases — this README currently covers the Word engine.
Word
Direct OOXML manipulation (JSZip + fast-xml-parser) with tracked changes and
stable w14:paraId paragraph anchors, not a wrapper around python-docx.
Every read tool returns human-readable text plus a trailing <json> block for
programmatic use. Every write tool locks its target file per-path so
concurrent calls against the same document serialize instead of corrupting it.
Prerequisites
Node.js 20+
LibreOffice, only for
word_convert_to_pdf— install it sosofficeis on yourPATH, or at one of the standard install locations (/Applications/LibreOffice.app/...on macOS,C:\Program Files\LibreOffice\program\soffice.exeon Windows). No other tool needs it.
Tools
Category | Tools |
Reading & search |
|
Editing (tracked changes by default) |
|
Formatting |
|
Page layout |
|
Tables |
|
Comments |
|
Track changes |
|
Images, headers/footers, footnotes |
|
Document creation & styling |
|
Protection & conversion |
|
Merging |
|
Notable scope decisions
These keep the engine simple; see decisions.md/phases.md for the full
rationale if you hit one of these edges:
Tracked-changes replace/insert/delete is paragraph-level, not a surgical cross-run replace — an edited paragraph's runs are rewrapped in
w:ins/w:delwholesale.Formatting tools apply directly, without
w:rPrChange/w:pPrChangetracked-revision wrappers.Page layout, headers, and footers address only the document's final, body-level section — no multi-section support.
Tables are addressed by
table_index(0-based, document order), not a stable anchor; table-cell paragraphs still get realw14:paraIds.Comment replies are independent top-level comments anchored to the same paragraph, not real
w15:commentsExparent/child threading.word_merge_documentssplices paragraphs/tables from later source documents into the first source's package as-is (full formatting fidelity) but does not remap images/hyperlinks/footnotes/comments — those keep their source document's now-meaningless relationship IDs.word_add_password_protectionimplements Word's real, Word-enforced "Restrict Editing" password (aw:documentProtectionhash insettings.xml) — not full document encryption, and no digital-signature tool (GongRzhe's own version of that feature isn't real either; see ADR-003/ADR-010 indecisions.md).
Example
{
"tool": "word_replace_texts",
"arguments": {
"file_path": "/abs/path/to/report.docx",
"edits": [{ "search": "Q3 draft", "replace": "Q3 final" }],
"track_changes": true
}
}Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceAn MCP server that enables programmatic interaction with Microsoft Word documents on Windows via COM Interop, allowing operations like document creation, text manipulation, formatting, and table management.16MIT
- Alicense-qualityBmaintenanceSwift-native MCP server for Word (.docx) document manipulation. 148 tools for creating, reading, editing, formatting, and exporting Word documents with full OOXML support.6MIT
- AlicenseBqualityBmaintenanceAn MCP server for reading, editing, and validating Microsoft Word documents with specialized support for track changes, comments, and footnotes. It enables structural auditing, heading extraction, and precise OOXML-level document manipulation through natural language tools.10040MIT
- Alicense-qualityDmaintenanceEnables reading, writing, editing, and converting Office documents (ODT, DOCX, ODS, XLSX, PDF, etc.) using MCP tools, with no external dependencies.25MIT
Related MCP Connectors
Use your own Word templates to convert Markdown → DOCX/PDF/HTML from any MCP-compatible AI.
Google Docs MCP Pack — read, create, and edit Google Docs via OAuth.
MCP-native collaborative markdown editor with real-time AI document editing
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/stoyantsiparov/Office-MCP-Server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server