The DOCX MCP Server is a Node.js-based Model Context Protocol (MCP) server that enables comprehensive creation, manipulation, and saving of DOCX documents using a structured JSON schema.
Core Capabilities:
Document Lifecycle: Create new DOCX documents from JSON, open existing
.docx
files, save in-memory documents to disk, and export JSON modelsContent Management: Insert, replace, and remove content blocks by index with support for headings (6 levels), paragraphs, lists (nested ordered/unordered), tables, code blocks (180+ languages with syntax highlighting), images, page breaks, blockquotes, and text boxes
Rich Formatting: Apply comprehensive text styling including bold, italic, underline, colors, fonts, alignment, spacing, and indentation
Metadata Handling: Manage document properties like title, creator, subject, keywords, and dates
Page Layout Control: Configure page size (A4, Letter), orientation, margins, and headers/footers with dynamic elements like page numbers and dates
Image Support: Embed images from URLs, local files, or base64 data in PNG, JPEG formats
Document Registry: Maintain in-memory document management with unique IDs and querying capabilities
Schema Validation: Ensure valid document structure through JSON schema validation
Provides a Node.js-based MCP server for creating, editing, and managing DOCX documents with rich formatting, tables, images, code blocks, and headers/footers
docx-mcp
A Node.js MCP server that lets clients create, query, edit, and save DOCX documents using a JSON schema, powered by the docx
library.
Features
- Complete DOCX operations: Create, edit, and save Word documents via Model Context Protocol (MCP)
- JSON Schema validation: Structured document definition with comprehensive validation
- Rich content blocks:
- Text & Headings: 6 heading levels with advanced formatting
- Lists: Ordered/unordered lists with multiple numbering styles and nesting
- Code Blocks: Syntax highlighting for 180+ languages with themes and line numbers
- Tables: Full table support with styling and cell formatting
- Images: URL downloads with fallback, local files, and base64 embedding
- Page Control: Page breaks and section breaks
- Advanced text formatting:
- Basic: Bold, italic, underline, strikethrough, colors
- Enhanced: Superscript, subscript, font families, highlights, small caps
- Spacing: Character spacing, paragraph alignment, indentation
- Document management: In-memory registry with unique IDs
- Metadata support: Complete document properties and custom metadata
- File operations: Open existing DOCX files and save to disk
- Error handling: Graceful fallbacks and comprehensive validation
JSON Schema
See src/schema.ts
for the full schema. Key concepts:
- meta: Document metadata (title, subject, creator, etc.)
- pageSettings: Page size, orientation, margins, header/footer margins (NEW in v0.3.0)
- headers: Page header configuration with default/first/even page support (NEW in v0.4.0)
- footers: Page footer configuration with default/first/even page support (NEW in v0.4.0)
- content: Array of blocks: heading, paragraph, table, image, codeBlock, list, pageBreak, horizontalRule, blockquote, infoBox, textBox
- Enhanced blocks:
- CodeBlock:
{ type: "codeBlock", language: "javascript", code: "...", showLineNumbers: true }
- List:
{ type: "list", ordered: true, items: [...] }
with nesting support - Table: Enhanced with backgroundColor, borders, verticalAlign, cell margins (NEW in v0.3.0)
- HorizontalRule:
{ type: "horizontalRule", style: "single", color: "#666" }
(NEW in v0.3.0) - Blockquote:
{ type: "blockquote", children: [...], borderColor: "#ccc" }
(NEW in v0.3.0) - InfoBox:
{ type: "infoBox", boxType: "info", title: "Note", children: [...] }
(NEW in v0.3.0) - TextBox:
{ type: "textBox", children: [...] }
with border styling (NEW in v0.3.0) - Enhanced TextRun: Supports fontFamily, superScript, subScript, highlight, etc.
- CodeBlock:
- Each paragraph/heading uses inline runs (text, hyperlink) with rich formatting options
Headers & Footers Configuration (NEW in v0.4.0)
Supported header/footer elements:
- text: Static text with styling options
- pageNumber: Auto page numbering (decimal, upperRoman, lowerRoman, upperLetter, lowerLetter)
- currentDate: Auto-updating date with custom format strings
- documentTitle: References document meta.title
- image: Images in headers/footers (base64, path, url)
New in v0.4.0 - Document Structure & Headers/Footers
- ✅ Headers & Footers System: Comprehensive page header and footer support
- Default, first page, and even page headers/footers
- Rich content: text, page numbers, dates, document title, images
- Flexible alignment: left, center, right
- Advanced styling: fonts, colors, sizes, bold/italic
- ✅ Dynamic Content Elements:
pageNumber
: Automatic page numbering with multiple formats (decimal, roman, letters)currentDate
: Auto-updating dates with custom formatsdocumentTitle
: Reference document metadatatext
: Static text with full styling optionsimage
: Headers/footers images support
- ✅ Professional Layout Control:
- Different headers/footers for first page vs. rest of document
- Odd/even page variations for book-style layouts
- Precise margin control for headers and footers
- Integration with existing page settings system
New in v0.3.0 - Styles & Layout
- ✅ Page Settings: Page size (A4, Letter, etc.), orientation, margins control
- ✅ Enhanced Tables: Background colors, border styles, vertical alignment, table templates
- ✅ New Block Types: Horizontal rules, blockquotes, info boxes, text boxes
- ✅ Advanced Styling: More comprehensive table and cell formatting options
Previous Updates
v0.2.0 - Enhanced Document Operations
- ✅ Code Blocks: Syntax highlighting for 180+ programming languages
- ✅ Lists: Ordered and unordered lists with multiple styles and nesting
- ✅ Page Breaks: Control document pagination
- ✅ Enhanced Text: Superscript, subscript, font families, highlights
- ✅ Improved Schema: More comprehensive validation and type safety
Run locally
- Install deps
- Dev mode
- Build and start
Tools
- docx-getSchema { } // Get JSON schema - call this first!
- docx-create { json }
- docx-open { id?, path } // open .docx file from disk
- docx-queryMeta { id }
- docx-queryObjects { id }
- docx-editMeta { id, patch }
- docx-editContent { id, index, block }
- docx-insertContent { id, index, block }
- docx-removeContent { id, index }
- docx-save { id, path }
- docx-exportJson { id }
Example JSON
Image Support
Images can be included in three ways:
- URL:
{ "type": "image", "url": "https://example.com/image.png", "width": 300, "height": 200 }
- Local file path:
{ "type": "image", "path": "/path/to/image.png", "width": 300, "height": 200 }
- Base64 data:
{ "type": "image", "data": "base64string", "format": "png", "width": 150, "height": 100 }
URL Image Features:
- Automatic download from HTTP/HTTPS URLs
- Fallback to generated placeholder image if download fails
- Placeholder shows original URL and dimensions
- Support for common image formats (PNG, JPEG, JPG)
- Note: Fontconfig warnings on Windows are harmless and can be ignored
Supported formats: PNG, JPEG, JPG
Notes
- Hyperlinks are rendered visually as underlined blue text. Full hyperlink relationships can be added later.
- Images support URL downloads, local file paths, and base64 data.
- This server runs over stdio to be compatible with MCP hosts.
hybrid server
The server is able to function both locally and remotely, depending on the configuration or use case.
Tools
Enables 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.
Related MCP Servers
- AsecurityAlicenseAqualityProvides comprehensive document processing, including reading, converting, and manipulating various document formats with advanced text and HTML processing capabilities.Last updated -162815MIT License
- AsecurityAlicenseAqualityA server providing tools to read, write, and edit Microsoft Word (docx) files through the Model Context Protocol, allowing operations like complete document reading, content creation, targeted paragraph editing, and text insertion.Last updated -425MIT License
- -securityFlicense-qualityA powerful Word document processing service based on FastMCP, enabling AI assistants to create, edit, and manage docx files with full formatting support. Preserves original styles when editing content.Last updated -128
- AsecurityAlicenseAqualityWord document reading and writing MCP implemented in Node.jsLast updated -7387MIT License