loading…
Search for a command to run...
loading…
Enables creating professional Word documents from markdown or structured content with fast, customized formatting via natural language.
Enables creating professional Word documents from markdown or structured content with fast, customized formatting via natural language.
A fast, TypeScript-based MCP server for creating professional Word documents from markdown or structured content.
🚀 Markdown-First Workflow - Just write natural markdown and get professional Word documents in ~300ms!
Download index.js from Releases and save to ~/mcp-servers/docx/index.js
Configure Claude Desktop - edit claude_desktop_config.json:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"mcp-server-docx": {
"command": "node",
"args": ["/Users/YOUR_USERNAME/mcp-servers/docx/index.js"]
}
}
}
Replace the path with where you saved the file (Windows: use C:\\Users\\... with double backslashes)
Restart Claude Desktop
Test by asking Claude:
Create a Word document at /tmp/test.docx from this markdown:
# Hello World
This is my **first** Word document with *markdown*!
## Features
- Easy to use
- Fast generation
- Professional formatting
You should get a properly formatted Word document at /tmp/test.docx!
git clone <repository-url>
cd mcp-server-docx
nvm install && npm install && npm run build
Use dist/index.js in your Claude config instead of the downloaded bundle.
The simplest way to create Word documents - just write natural markdown like you always do!
Just tell Claude what you want in plain markdown syntax:
Create a Word document at /tmp/my-resume.docx from this markdown:
# JANE SMITH
[email protected] | (555) 123-4567
## PROFESSIONAL SUMMARY
I am a **senior software engineer** with *10+ years* of experience building scalable web applications.
> "Jane is an exceptional technical leader and mentor." — Former Manager
## SKILLS
- Expert in **TypeScript**, **React**, and **Node.js**
- Strong experience with **AWS** cloud architecture
- Passionate about **clean code** and **best practices**
---
## WORK EXPERIENCE
### Senior Engineer at Tech Corp (2020-Present)
Key achievements:
1. Designed and implemented **microservices architecture**
2. Reduced system latency by *40%*
3. Mentored team of 5 junior engineers
### Software Engineer at Startup Inc (2015-2020)
- Built MVP from scratch using **React** and **TypeScript**
- Implemented REST API with **Express** and **PostgreSQL**
What you get:
Supported Markdown:
# ## ### Headings (H1/H2 get bottom borders)**bold** and *italic* inline formatting[text](url) for clickable hyperlinks- or * for bullet lists1. 2. for numbered lists> quote for block quotes (rendered in italics)--- *** ___ horizontal rules (rendered as lines)Behind the scenes: Uses create_document_from_markdown tool
Want Helvetica instead of Times New Roman? Different font sizes? - Easily customize the appearance!
You can override the default styles by passing a styles object:
Create a Word document at /tmp/my-resume.docx from this markdown:
# JANE SMITH
## Professional Summary
I am a senior engineer.
Use these custom styles:
- All headings should be Helvetica
- H1 should be 36pt bold without bottom border
- H2 should be 24pt bold with bottom border
- Paragraphs should be Arial 12pt
Style options by element:
heading1, heading2, heading3, heading4 - Control heading appearanceparagraph - Regular paragraph textbullets - Bulleted list itemsordered - Numbered list itemsblockquote - Block quote text (from > quote)Each element can have:
fontName - Font family (e.g., "Helvetica", "Arial", "Times New Roman")fontSize - Font size in points (e.g., 12, 14, 36)bold - Bold text (true/false)italic - Italic text (true/false)color - Text color as hex RGB (e.g., "FF0000")borderBottom - Bottom border for headings (true/false)Example styles object:
styles: {
heading1: { fontName: 'Helvetica', fontSize: 36, bold: true, borderBottom: false },
heading2: { fontName: 'Helvetica', fontSize: 24, bold: true, borderBottom: true },
heading3: { fontName: 'Helvetica', fontSize: 18, bold: true },
paragraph: { fontName: 'Arial', fontSize: 12 },
bullets: { fontName: 'Arial', fontSize: 12 },
ordered: { fontName: 'Arial', fontSize: 12 },
blockquote: { fontName: 'Georgia', fontSize: 12, italic: true }
}
Default styles (used when you don't provide custom styles):
Pro tip: You only need to specify the elements/properties you want to change! Unspecified elements use the defaults.
For when you need fine-grained control - specify exact fonts, sizes, and colors
Use this when markdown isn't flexible enough and you need precise control over formatting:
Create a resume at /tmp/my-resume.docx using create_document_from_content.
Make the name "JANE SMITH" in Helvetica 36pt bold.
Add a "PROFESSIONAL SUMMARY" H2 heading with a bottom border in Helvetica 14pt.
Add a paragraph about my experience in Times New Roman 12pt.
Add a "SKILLS" H2 heading with a bottom border.
Add bullet points for my skills in Times New Roman 12pt.
Example structure:
content: [
{
text: 'JANE SMITH', // defaults to paragraph type
format: { fontName: 'Helvetica', fontSize: 36, bold: true },
},
{ text: '' }, // empty paragraph for spacing
{
type: 'heading',
text: 'PROFESSIONAL SUMMARY',
format: { level: 2, borderBottom: true },
},
{
text: 'Software engineer with 10+ years experience...',
format: { fontName: 'Times New Roman', fontSize: 12 },
},
{
type: 'bullets',
items: ['TypeScript & React', 'Node.js & Python', 'AWS & Docker'],
format: { fontName: 'Times New Roman', fontSize: 12 },
},
];
Content item options:
type: 'paragraph' (default), 'heading', 'bullets', 'ordered'text: For paragraphs and headings (use '' for spacing)items: Array of strings for listsformat: fontName, fontSize, bold, italic, color, level (headings), borderBottom (headings)Behind the scenes: Uses create_document_from_content tool
You can use markdown-style formatting even in structured mode!
Both the pure markdown approach and structured content support inline **bold** and *italic* formatting:
// Markdown formatting works in any text field:
{
text: 'Led **4-engineer team** building *next-gen platform*',
format: { fontSize: 12 }
}
// Also works in list items:
{
type: 'bullets',
items: [
'Expert in **TypeScript** and **React**',
'Passionate about *clean code* and *best practices*'
]
}
This gets automatically converted to proper Word formatting with bold and italic runs.
git clone <repository-url>
cd mcp-server-docx
nvm install # Use the correct Node.js version from .nvmrc
npm install
npm run build
This project uses automated GitHub releases. See RELEASING.md for details.
Quick summary:
package.json (e.g., npm version patch)mainindex.jsThe release workflow only triggers on changes to:
src/** (excluding tests)package.jsonpackage-lock.jsonComprehensive test suite with 54 tests powered by Vitest:
npm test # Run tests once
npm run test:watch # Watch mode with fast HMR
npm run test:coverage # Coverage report
npm run test:ui # Visual UI mode
Test coverage:
Performance: All 54 tests complete in ~400ms
npm run lint # Run ESLint (fails on warnings)
npm run lint:fix # Auto-fix linting issues
npm run format # Format code with Prettier
npm run format:check # Check formatting (CI)
npm run typecheck # TypeScript type checking
npm run ci # Run all checks (lint + format + test + typecheck)
Standards:
mcp-server-docx/
├── src/
│ ├── __tests__/
│ │ ├── document-manager.test.ts # Document management tests
│ │ └── markdown-parser.test.ts # Markdown parsing tests
│ ├── index.ts # MCP server implementation
│ ├── document-manager.ts # Core document logic
│ ├── markdown-parser.ts # Markdown to content converter
│ └── types.ts # TypeScript type definitions
├── dist/ # Compiled JavaScript
├── vitest.config.ts # Test configuration
├── package.json
├── tsconfig.json
└── README.md
Key Performance Metrics:
Design Principles:
**bold**/*italic* supportISC
James Mehorter
This project is built on two excellent open source libraries:
docx.js.org | GitHub - A powerful library for generating Word documents (.docx files) in JavaScript/TypeScript. This MCP server wouldn't be possible without the solid foundation that docx provides for creating and manipulating Office Open XML documents.
remark.js.org | GitHub - A robust markdown processor powered by plugins, part of the unified collective. Remark's standards-compliant parsing ensures accurate conversion of markdown to Word documents.
Thanks to:
Выполни в терминале:
claude mcp add mcp-server-docx -- npx Безопасность
Низкий рискАвтоматическая эвристика по публичным данным — не гарантия безопасности.