verified-docx-mcp
An MCP server for local .docx files that reads, writes, verifies, and exports Word documents with evidence-first, lock-aware operations.
Export/render:
export_pdfrenders a .docx to PDF via Word and reports page count and per-section page spans.Lock/sync status:
lock_statusreports Word/LibreOffice owner-file presence and sync-quiesce state without refusing.Read-only inspection: read document parts as markdown/text/runs, enumerate sections, styles, tables, and headers/footers.
Markdown-to-OOXML writes: replace body/range or append markdown, with atomic writes, OPC validation, rollback, and before/after evidence.
Targeted text edits: replace or format matched text with normalization, run-splitting, and
track_changessupport; apply named styles.Comments: add anchored comments, read/reply/resolve comment threads, and accept/reject tracked changes.
Tables: list/get tables, replace rows/cells, and insert new tables with spans, merges, shading, and anchoring.
Images: insert local PNG/SVG images with sizing and scale reporting.
Diffing: diff the document body's markdown projection against a local markdown file.
Live co-editing: optional Word task-pane bridge for live search/replace/format/comment operations, live save, and live status.
Provides tools for working with .docx files stored on iCloud Drive, including PDF export via Word automation and status reporting for lock files and iCloud sync state.
Click on "Deploy 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., "@verified-docx-mcpExport my draft.docx to PDF and show the page count."
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.
verified-docx-mcp
An MCP server for local .docx files with verified writes. It is the
docx counterpart to
verified-googledocs-mcp:
the same evidence-first contract (every mutating tool re-reads the file
after writing and returns before/after evidence, never a bare "success"),
applied to a local Word document on a synced drive (OneDrive, iCloud Drive)
instead of a Google Doc.
Status
Issue #28 of the build plan, through WP-16a (server half; WP-16b, the
JennyStack-side KP resume rendering contract, is a separate PR). Reading
and writing a .docx package needs no Word installation at all — this
server manipulates OOXML directly. Word is required only for
export_pdf (rendering a page-accurate PDF), and that additionally
needs a macOS Automation grant for the app hosting this server's
process.
Platform note: this server is macOS-only, and not only for
export_pdf. insert_image's SVG path (issue #28 WP-15a) shells out to
macOS's built-in sips to rasterize the PNG fallback part Word requires
for an SVG — no cairosvg/rsvg-convert/Inkscape dependency is added,
but sips itself is not optional and is not available on Linux/Windows.
PNG-only insert_image calls do not need it. (mutations.py's own
scutil-based conflict-copy detection is the other pre-existing
macOS-only dependency, for reference.)
Tools implemented so far:
export_pdf(path, output_path, close_after=True, section_keys=None)— render a.docxto PDF via Microsoft Word automation and report its page count; the result also reportsclosed_after(whether the staged copy's window was closed),close_error(why not, when it wasn't), andleft_open_document(null once closed). It also reports per-section page spans:sections(each heading section'sstart_page/start_fraction,end_page/end_fraction, and derivedpages, verified againstfind_sections'heading_text) andpage_height_pt, restrictable to specific sections viasection_keys— see the tool's own docstring for the default-mode-degrades-vs-explicit-mode-raises verification contract.lock_status(path)— report Word/LibreOffice owner-file presence and sync-quiesce state, as data only. Never refuses.list_parts(path),read_document(path, format, part),find_sections(path, part),list_page_sections(path, part),list_styles(path)— read a.docxpart as markdown/text/runs, and enumerate its heading-delimited sections, page-layout sections, and styles. Never refuse on a locked file (a validated snapshot is read instead).replace_body_markdown(path, markdown, ...),replace_range_markdown(path, section_key, markdown, ...),append_markdown(path, markdown, ...)— markdown -> OOXML writes, guarded by a lock/sync/revision check that runs before any temp file is written, an atomic write with OPC validation and a rollback on a failed post-write verification, and a full before/after/revision evidence envelope on every call.replace_text(path, find, replace, expected_matches, ...),format_text(path, find, style, expected_matches, ...)— targeted text edits located via a normalization ladder (exact -> curly/straight quotes -> NBSP/whitespace collapse -> soft-hyphen strip), with run splitting that clones a boundary run's originalw:rPrverbatim onto every surviving piece. Both take awrite_mode: "auto" | "file" | "live"parameter (default"auto"):"auto"edits through a connected Word task pane instead of the file when the document is open in Word with the Live pane loaded, otherwise the file path unchanged — see Live mode below.live_save(path)— ask the connected pane to save the live document, then report both the pane's own live revision token and a bridge back to the file-mode revision contract (file_revision) for a caller that wants to keep working against the file afterward.list_open_items(path, source="auto"),accept_tracked_changes(path, revision_ids?, ...),reject_tracked_changes(path, revision_ids?, ...)— list open comments/pending tracked changes (Google's response shape), and accept/rejectw:ins/w:delrevisions by id or all at once.source="live"reads through a connected Word task pane instead (issue #106 WP-4 — see "Live mode" below).track_changes: boolon every mutating tool above — when true, the edit is wrapped inw:ins/w:del(or aw:rPrChangefor a style change) with an author/date/id, rather than applied directly. A revision authored by the server's own configured identity never blocks a later tracked write; one authored by anyone else does, unlessforce=True.add_anchored_comment(path, quote, text, expected_matches, write_mode="auto", ...),get_comment_thread(path, comment_id),reply_to_comment(path, comment_id, text, write_mode="auto"),resolve_comment(path, comment_id, write_mode="auto")— create an anchored comment, read a comment and its replies (by durable id), reply to one, and resolve one. Builds all five interlocking comment parts a real Word comment needs; verified part-by-part against a Word-authored golden fixture (tests/fixtures/comments/golden-comment.docx). A multi-paragraph comment's identity is keyed on its LAST paragraph, matching Word's own commentsIds.xml/commentsExtended.xml convention, and everycomment_idlist_open_itemsreports (durableId or, lacking one, the raww:id) is accepted by the three tools above.write_mode="live"sends the same operation through a connected Word task pane instead (issue #106 WP-4 — see "Live mode" below), accepting either alive:<id>handle or a correlated durableId/w:id.Lock guard layers 0/3/4 — every mutating tool above now runs inside a same-machine
.jsclaimmutex (O_EXCL, released even on failure) alongside a no-opremote_checkoutseam for a future Microsoft Graph checkout, and reportsconflict_copy_detected(plus, when non-empty,conflict_copies/sibling_files_changed) after every successful write — a post-write sweep for sync-conflict sibling files, never raised as an error since the write it describes already succeeded. Detection only, not prevention (core/document-backend-protocol.md §9): the naming patterns it matches are client- and locale-dependent, so their absence is not proof no conflict occurred.diff_body_vs_file(path, file_path)— export the docx body's markdown projection (the same oneread_document(format="markdown")uses) and diff it against a local markdown file withdifflib, the same mechanism GoogleDocs-MCP'sdiff_tab_vs_fileuses. Read-only and affirmative-only:identical: truemeans no difference was found by this particular projection, not a guarantee none exists (see the tool's own docstring for the docx-specific reasons why, including a trailing newline on the file side alone surfacing as a spurious one-line difference).list_tables(path, part),get_table(path, table_id, part)— enumerate everyw:tbl(including one nested inside a cell, which gets its owntable_id) and report one table's full row/cell detail, includingw:gridSpan/w:vMergeper cell. Never refuse on a locked file.replace_table_row(path, table_id, row_index, cells, ...)— replace one row's cells wholesale, one markdown string per cell. Refuses (MERGED_OR_NESTED_TABLE) for the WHOLE table the moment any cell in it is merged (w:gridSpan/w:vMerge) or aw:tblis nested inside a cell, mirroring GoogleDocs-MCP's own merged-cell refusal.replace_cell_markdown(path, table_id, row_index, cell_index, markdown, ...)— replace one cell's content, leaving its ownw:tcPrbyte-identical — the only write path safe on a merged cell, and the intended path for an Appendix-A style band-and-border table. Supports multi-level bulleted/numbered markdown inside the cell, onenumId/abstractNumtree shared across nesting levels via increasingw:ilvl, the same machineryreplace_body_markdown/append_markdownalready use.insert_table(path, rows, style_id, header_rows=0, grid_dxa=None, cant_split=False, anchor=None, ...)— insert a new table, one markdown string OR cell-spec object ({"markdown", "span", "v_merge", "fill", "color", "bold", "align", "valign"}) per cell — a spanning (w:gridSpan) or vertically merged (w:vMerge) title/header row, shading, and per-roww:tblHeaderare all write paths now, not just a read-side report.style_idis REQUIRED and must name an existingw:type="table"style in the document;grid_dxagives explicit per-column dxa widths, otherwise columns split evenly across the text-column widthlist_page_sectionsreports (unchanged default).anchorplaces the table bysection_key(positionorafter_paragraph_text) orafter_table_idinstead of always appending at the end of the body. Cell-levelfill/valign/span/v_mergelive inw:tcPrand survive a laterreplace_cell_markdown;bold/color/alignlive on the cell's own runs/paragraphs and do not.insert_image(path, image_path, width_in, ...)— append a new inline picture at the end of the body, from a LOCAL.pngor.svgfile (read natively — noIMAGE_SOURCE_UNSUPPORTED, unlike GoogleDocs-MCP's URL-only tool).width_indefaults to the text-column widthlist_page_sectionsreports; an.svgembeds natively (Word 2016+'s own SVG extension) WITH a PNG fallback part Word requires, rasterized from the SVG's own native pixel size via macOSsips. Recordsdesign_width_in/design_height_in,placed_width_in/placed_height_in, andeffective_scale = placed_width_in / design_width_in— a real measured ratio.apply_style(path, find, style_id, expected_matches, ...)— apply a NAMED style (fromlist_styles) to text located viafind, the named-style counterpart toformat_text's boolean toggles. A character style applies to the matched run(s) exactly likeformat_text(includingtrack_changes=True); a paragraph style appliesw:pStyleto every paragraph containing a matched run, but does not supporttrack_changes=True(now:pPrChange-style tracked change exists yet — named explicitly rather than silently ignored).read_header_footer(path)— read every header/footer part's content as markdown in one call. Never refuses on a locked file.
More tools land in a later work package of the same plan.
Related MCP server: DOCX-MCP
Interoperability
Every read/write path above is exercised by tests/unit against
Word-authored fixtures and, for comments specifically, verified part by
part against a golden .docx produced by the lead in Word desktop
(tests/fixtures/comments/golden-comment.docx; its provenance was
confirmed by the lead). What those tests cannot cover is behavior that
only shows up with a live human at a keyboard and a real sync client in
the loop: how a sync client actually names a conflict file, how Word's
own Review pane renders a tracked change, how Word Online renders a
comment this server wrote.
The lead has ruled that a live round trip through Word desktop and Word Online is no longer a landing gate for this repo. Instead, each item below is recorded as verify at first real use: the exact assumption this server's code depends on, stated precisely enough that a future reader knows exactly what is unproven and what would actually break if the assumption turns out to be wrong.
Conflict-copy filename (issue #28 WP-10). Assumption: OneDrive names a conflict copy
<stem>-<Machine>.docxusing the resolved local machine name -- on this machineMichaels-MacBook-Pro(_local_machine_names()inmutations.py; confirmed against this machine's ownscutil --get ComputerName/LocalHostNameoutput, both of which already normalize to that string).conflict_copy_sweep's_matches_conflict_copy_patternmatches that branch only on an exact, case-insensitive match against_local_machine_names(). If wrong: a real OneDrive client emitting a different machine-name form (a different normalization, a user-set device label, a non-Mac client) means a genuine conflict lands insibling_files_changedinstead of raising theconflict_copy_detectedevidence flag -- still visible to a caller that reads the evidence, just not flagged as unambiguously as the matched branch is. This is a deliberate, already-documented trade-off, not a gap discovered here:_matches_conflict_copy_pattern's own docstring notes that a conflict copy from another, unenumerable machine falls through the same way, consistent with core/document-backend-protocol.md §4's "the absence of a match is not proof no conflict occurred."Word Online round trip (issue #28 WP-09). Assumption: a comment created, replied to, and resolved by this server's tools shows correct threading and resolved state when the file is reopened in Word desktop AND Word Online. What is actually proven: every comment part this server writes (
comments.xml,commentsExtended.xml,commentsIds.xml,commentsExtensible.xml,people.xml) is verified part by part against the golden, Word-desktop-authored fixture above. What is not proven: this server has never had one of its own comments opened in a live Word Online session. If wrong, Word Online's comment renderer disagrees with Word desktop's about some part-level detail the golden-fixture comparison did not catch (the fixture was authored in Word desktop, never in Word Online) -- threading or resolved state could render incorrectly specifically in the browser client this repo's fixtures never exercised.Review-pane author (issue #28 WP-07b-a). Assumption: a tracked
replace_textshows in Word's Review pane under the configured author name -- resolved byauthor.py'sresolve_author_name()from~/.jennystack/config.json'sauthor_namekey, or, absent that, the current macOS account's full name (pw_gecos, falling back toid -F) -- currentlyMichael Suttonon this machine. What is actually proven: the OOXML this server writes is well-formed and matches documented Word conventions for aw:ins/w:del'sw:authorattribute, and this server's own projection reads that author string back unchanged. What is not proven: nobody has opened one of these files in Word and looked at the Review pane. If wrong, the name Word actually displays could differ from the literalw:authorstring this server wrote (e.g. a Word-side display quirk that resolves a name against a signed-in account) -- the UI rendering is unobserved.Nested tracked edit (issue #28 WP-07b-a). Assumption: Word renders
<w:ins><w:del>...</w:del><w:ins>...</w:ins></w:ins>sensibly when a secondtrack_changes=Trueedit lands on a still- pending own insertion -- the named scope limit intext_edit.py's own module docstring. What is actually proven: read-back correctness holds regardless --projection.pyexcludesw:delcontent unconditionally, so the superseded text is correctly invisible to every read tool either way, directly exercised bytest_text_edit.py::test_own_author_tracked_edit_does_not_deadlock_a_second_tracked_edit(chainedreplace_text(..., track_changes=True)calls over the same span), not merely assumed. What is not proven: the visual shape of that nesting in Word's own Review pane. If wrong, Word could render the nested insertion/deletion confusingly (e.g. a crossed-out "insertion" that reads as ambiguous or duplicated) even though every read tool in this server still reports the correct final text.SVG text extractability through export_pdf (issue #28 WP-15a). Assumption: text inside an
insert_image-embedded SVG survivesexport_pdf(Word's own PDF export of a document containing that SVG) as extractable text, not a rasterized/flattened image -- i.e. that Word's PDF exporter renders the native SVG branch (a:blip'sa14:svgBlipextension this server writes) as real vector text rather than falling back to the PNG fallback part or flattening the SVG to a bitmap. The plan named this aLEAD:live check; the lead has since ruled the remaining live checks are no longer a landing gate for this repo (see this section's own opening paragraph), so it is recorded here in the same form as items 1-4 instead of being run. What is actually proven: the OOXML this server writes is well-formed (opc_validpasses with both the SVG part and its PNG fallback part present and correctly related --tests/unit/test_images.py), and the SVG's own text content is written byte-for-byte into the.svgmedia part (nothing about this server's own write path could corrupt or strip it). What is not proven: nobody has runexport_pdfagainst a document this server inserted an SVG into and inspected the resulting PDF's own text layer. If wrong, Word's PDF exporter treats the SVG extension branch as non-authoritative for export purposes and falls back to rasterizing the PNG fallback part instead -- the PDF would still look correct (the fallback is a real rasterization of the same SVG, via macOSsips), but the SVG's own text would not be independently selectable/extractable in the PDF.
None of the five blocks this server from being used; each is a
live-Word-rendering question this repo's own test suite, which needs no
Word installation to read or write a .docx, cannot answer by itself.
The next real use of this server against a live synced folder is the
first opportunity to confirm or correct any of them.
Install
Requires Python 3.12+ and uv.
uv syncRun
As an MCP server (stdio transport), typically registered by a client rather than run directly:
uv run --directory "<path-to-this-clone>" verified-docx-mcpDiagnose the Word render path on this machine (run from the SAME application that will host the MCP server — macOS grants Automation, and file access, per hosting app, not per terminal emulator in general):
uv run --directory "<path-to-this-clone>" verified-docx-mcp doctorTest
uv run pytest tests/unittests/unit is offline and runs against committed fixture .docx/.pdf
files — no Word installation required. tests/live needs a real Word
install and a macOS Automation grant; it is skipped unless --run-live is
passed.
Live mode
A Word task-pane add-in (addin/) plus a local bridge
(src/verified_docx_mcp/live/) for live co-editing:
issue #106.
The bridge serves the pane over local HTTPS (port 53135) and runs a WSS
ops channel (port 53136) the pane connects to and applies
search/replace/format/comment operations from, always reading the
document back after a mutation. The MCP server starts the bridge lazily
(idempotent) the first time a live-aware tool is called.
live_status (read-only) reports bridge and connected-pane state:
{bridge_running, port, ops_port, sessions: [{document_name, document_url, connected_since, last_heartbeat_age_s, body_sha256, requirement_sets}]} — an empty sessions list is normal before the lead
opens the pane in Word.
write_mode: "auto" | "file" | "live" (default "auto") is wired up on
replace_text/format_text (WP-3) and on
add_anchored_comment/reply_to_comment/resolve_comment (WP-4), with a
parallel source="live" on list_open_items — each goes through the connected
pane instead of the on-disk .docx parts when the document is open in Word with
the Live pane loaded, otherwise the file path unchanged. live_save(path) asks the
pane to save. list_open_items(source="live") carries a correlation list bridging
a live comment's own id back to the durableId/w:id file mode reports (Office.js's
Comment.id is unrelated to either). Full architecture, the write_mode rule and
live evidence shape, the correlation algorithm, and the lead's sideload runbook:
docs/live-mode.md.
Path safety
Every tool resolves its path argument through an allowlist
(VERIFIED_DOCX_MCP_ALLOWED_FILE_ROOTS, defaulting to the user's home
directory plus the Claude Code scratch root, /private/tmp/claude-<uid>,
when that directory exists) and a denylist of well-known credential
locations (~/.ssh, ~/.aws, etc.) that is never overridable. Setting
VERIFIED_DOCX_MCP_ALLOWED_FILE_ROOTS explicitly replaces the default list
verbatim rather than widening it. See src/verified_docx_mcp/paths.py.
License
MIT — see LICENSE.
Available Tools
2 toolsexport_pdfA
Render a local .docx to PDF via Microsoft Word and report its page count.
output_path must fall inside VERIFIED_DOCX_MCP_ALLOWED_FILE_ROOTS (defaults to the user's home directory), must not resolve to a credential path, and its parent directory must already exist. This is a read/render tool: the source .docx is never modified (Word opens a private staged copy — see render.py), so the return value has no "applied" key.
Returns pdf_path, sha256, page_count (best-effort; None — never a guessed 0 — when it cannot be determined), page_count_source ("word"|"pdfinfo"|"regex"|None), engine ("word"; the only engine, D2: no LibreOffice), and left_open_document (the rendered document's window title in Word — see render.py's module docstring for why it is never auto-closed).
Errors:
INVALID_INPUT - a bad path or output_path
RENDER_ENGINE_UNAVAILABLE - no render engine available (Word only)
AUTOMATION_NOT_GRANTED - macOS declined Automation control of Word
for this app; run verified-docx-mcp doctor for the fix, scoped to the app
hosting this MCP server's own process
WORD_SANDBOX_UNAVAILABLE - Word has never been launched on this
machine (its sandbox container does not
exist yet)
RENDER_FAILED - any other Word automation failure
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | ||
| output_path | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden, and it delivers: it discloses that the source .docx is never modified (Word opens a private staged copy), that page_count is best-effort and never a guessed 0, that left_open_document is never auto-closed (with a pointer to render.py for why), and enumerates all error conditions with their meanings. This is exemplary behavioral disclosure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense and information-rich, with clear section breaks for return values and errors. It is longer than typical, but every sentence earns its place by disclosing constraints, behavior, or error handling. It is front-loaded with the core purpose and then systematically covers edge cases. Slightly verbose in the error section, but justified for a tool with complex failure modes.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (Word automation, sandbox, macOS permissions, best-effort page count), the description covers all critical aspects: input constraints, output format, error taxonomy, and behavioral quirks. The output schema exists, so return values are further structured. Nothing an agent needs to call this correctly is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It does not explicitly define 'path' beyond 'a local .docx', but it thoroughly defines output_path constraints and the return value semantics. The description adds substantial meaning to output_path and the overall behavior, though 'path' itself is only implicitly described as the source .docx. This is strong compensation for a 0% coverage schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: 'Render a local .docx to PDF via Microsoft Word and report its page count.' This clearly distinguishes it from the only sibling (lock_status), which is about lock state, not document conversion. The purpose is unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states constraints on output_path (must fall inside VERIFIED_DOCX_MCP_ALLOWED_FILE_ROOTS, must not resolve to a credential path, parent must exist), and clarifies this is a read/render tool, not a mutating one. It also names the only engine (Word) and explicitly says no LibreOffice, which is a clear exclusion. This is strong when-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lock_statusA
Report Word/LibreOffice owner-file presence and sync-quiesce state.
Data only — never refuses. Owner-file detection recognizes Word's "~$" owner file (matched by shared filename suffix, not by constructing one exact expected name — see _word_owner_file_matches's docstring) and LibreOffice's ".~lock.#". Sync-quiesce takes two (size, mtime_ns) samples ~1.5s apart and also checks for ".tmp"/".~*" siblings in the same directory (OneDrive/iCloud staging artifacts); "sync_quiesced" is false if either signal suggests the file is still being written.
Returns path, owner_file ({present, path, format, owner_name}), sync_quiesced, sync_detail ({sample_1, sample_2, interval_seconds, tmp_siblings}).
Errors: INVALID_INPUT - path does not exist or is outside the allowed roots
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full responsibility. It explicitly states 'Data only — never refuses,' discloses the detection algorithms (owner-file patterns, two-sample timing, tmp-sibling checks), and even references an internal docstring. It also lists the exact error condition (INVALID_INPUT). This is extremely transparent about behavior beyond the schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is thorough but somewhat long and dense, including implementation details like reference to an internal docstring and naming sample intervals. It front-loads the purpose and then dives into specifics. While every sentence provides value, the length might exceed what is immediately necessary for an agent to decide to call the tool. A more compact version could retain the key facts.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has an output schema (indicated by context), yet the description still enumerates the returned fields and their structure. It also explains behavior, timing, error cases, and the distinction between owner-file detection and sync-quiesce. For a tool of this complexity (multi-part return, nuanced detection), the description covers all necessary invocation context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There is only one parameter, 'path,' with no schema documentation (0% coverage). The description doesn't explicitly define 'path' but the context (checking a file) makes its meaning clear. The error condition 'path does not exist or is outside the allowed roots' adds semantic boundaries. While it doesn't explicitly say 'path is the file to check,' the surrounding text implies that strongly enough.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: 'Report Word/LibreOffice owner-file presence and sync-quiesce state.' It clearly distinguishes the tool from the sibling 'export_pdf' by naming the exact monitoring function. The scope (owner files, sync quiescence) is unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for checking file-writing stability ('sync_quiesced' state) and notes 'Data only — never refuses,' indicating a read-only check. It does not explicitly state when to use this versus export_pdf, but the sibling's purpose is obviously different. The phrase 'Data only' hints that it is safe to call without side effects, which is useful context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
2 tool updates
v0.1.0- First observed
export_pdf - First observed
lock_status
TDQS
Scored across 2 tools
export_pdf and lock_status have completely different purposes: one renders a docx to PDF, the other inspects owner/lock and sync state. There is no overlap in inputs, outputs, or side effects, so an agent should never confuse them.
Both names use snake_case and are readable, but export_pdf follows an imperative verb+object pattern while lock_status is a noun phrase without a verb. Adding a verb like get_lock_status or check_lock_status would make the naming pattern consistent.
Two tools is on the thin side and feels closer to a utility script than a full MCP server. However, the server appears intentionally scoped to safe docx rendering and preflight lock inspection, so the count is borderline rather than excessive.
The two tools cover the core workflow of checking whether a docx is locked/syncing and then rendering it to PDF. Minor gaps exist—such as no explicit docx validity check or wait-for-quiesce helper—but agents can work around them with repeated lock_status calls and careful error handling.
Maintenance
Related MCP Connectors
Document API for AI-native software: render PDFs, e-sign, PAdES-seal, and verify.
Markdown in, any format out. PDFs merged, split, watermarked. Runs on our own doc engines.
Document processing over MCP: merge, split and compress PDFs, run OCR, extract document text.
Composable APIs for document extraction, image transformation, and document & sheet generation.
Related MCP Servers
- AlicenseCqualityDmaintenanceEnables creation, editing, and management of Word documents through JSON schema with support for rich content including text formatting, tables, images, code blocks, and lists. Provides comprehensive DOCX operations including opening existing documents, modifying content, and saving files to disk.1216 npm1MIT
- AlicenseNot gradedqualityDmaintenanceEnables comprehensive Microsoft Word document manipulation through the Model Context Protocol, with advanced table operations including creation, data management, formatting, and bulk operations. Supports document creation, editing, and saving with plans for full document content management.7MIT
- FlicenseAqualityDmaintenanceEnables natural language interaction with local .docx files, allowing users to find, read, search, and summarize Word documents using friendly names and location hints.53-
- AlicenseAqualityDmaintenanceProvides comprehensive read/write access to Word documents, including comments, track changes, and reply threads.91MIT