
AI Group Markdown to Word MCP Server
Converts Markdown documents to professionally formatted Word documents with support for math formulas, custom styling, tables, images, and headers/footers.
Converts Markdown documents to professional Word documents with advanced formatting capabilities including mathematical formulas, custom styling, tables, images, headers/footers, and watermarks.
What it does
- Convert Markdown to Word documents with advanced formatting
- Process mathematical formulas using LaTeX syntax
- Import CSV and JSON data as formatted tables
- Embed local and remote images with automatic scaling
- Generate table of contents automatically
- Add custom headers, footers, and watermarks
Best for
About AI Group Markdown to Word MCP Server
AI Group Markdown to Word MCP Server is a community-built MCP server published by jackdark425 that provides AI assistants with tools and capabilities via the Model Context Protocol. Convert Markdown to professional Word (.docx) with math, custom styles, tables, images, headers/footers and watermarks — It is categorized under productivity. This server exposes 4 tools that AI clients can invoke during conversations and coding sessions.
How to install
You can install AI Group Markdown to Word MCP Server in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
License
AI Group Markdown to Word MCP Server is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Tools (4)
将Markdown文档转换为Word文档(DOCX格式),支持样式配置、模板系统和多种图像嵌入方式(本地文件、网络图片、Base64编码)
将CSV数据转换为可用于文档的表格数据
将JSON数组数据转换为可用于文档的表格数据
获取所有可用的预定义表格样式
AI Group Markdown to Word MCP Server
A comprehensive Model Context Protocol (MCP) server for converting Markdown documents to professional Word documents with advanced formatting, styling, and layout capabilities.
🌟 Features
Core Conversion
- Full Markdown Support: Complete Markdown syntax including headings, paragraphs, lists, tables, code blocks, and blockquotes
- Advanced Styling System: Comprehensive style configuration with themes, templates, and custom styling
- Professional Document Layout: Page setup, margins, orientation, and document structure
Advanced Features
- Mathematical Formulas: LaTeX math formula support with inline and block rendering
- Table Processing: Advanced table styling with 12+ preset styles, CSV/JSON data import
- Image Support: Local and remote image embedding with automatic scaling and formatting
- Header & Footer: Complete header/footer system with page numbers, total pages, and custom content
- Table of Contents: Automatic TOC generation with configurable levels and styling
- Watermarks: Text watermarks with configurable position, rotation, and transparency
MCP Integration
- Multiple Transports: Support for STDIO and Streamable HTTP transports
- Tool-based Interface: Clean MCP tool interface for document conversion
- Resource Templates: Pre-built document templates for various use cases
- Prompt System: Intelligent prompts for user guidance and troubleshooting
HTTP API & OpenAI Plugin Support
- Dual API Support: Both MCP protocol and simplified HTTP API endpoints
- OpenAI Plugin Compatible: Full OpenAI plugin specification support
- RESTful Endpoints: Simple REST API for easy integration
- OpenAPI Specification: YAML and JSON API documentation available
🚀 Quick Start
Installation
# Using npx (recommended for one-time use)
npx -y aigroup-mdtoword-mcp
# Or install globally
npm install -g aigroup-mdtoword-mcp
Usage with Claude Desktop
Add to your Claude Desktop configuration (claude_desktop_config.json):
{
"mcpServers": {
"markdown-to-word": {
"command": "npx",
"args": ["-y", "aigroup-mdtoword-mcp"]
}
}
}
Usage with Other MCP Clients
{
"mcpServers": {
"markdown-to-word": {
"command": "uvx",
"args": ["aigroup-mdtoword-mcp"]
}
}
}
🛠️ Available Tools
markdown_to_docx
Convert Markdown content to Word document with full styling support.
Input Schema:
{
markdown?: string; // Markdown content (required if inputPath not provided)
inputPath?: string; // Path to Markdown file
filename: string; // Output filename (without extension)
outputPath?: string; // Custom output directory
styleConfig?: StyleConfig; // Advanced styling configuration
}
Example Usage:
Convert this markdown to a Word document:
# Project Report
## Executive Summary
This is a sample report with **bold text** and *italic text*.
- Feature 1: Complete Markdown support
- Feature 2: Advanced styling system
- Feature 3: Professional document layout
| Column 1 | Column 2 | Column 3 |
|----------|----------|----------|
| Data 1 | Data 2 | Data 3 |
| Data 4 | Data 5 | Data 6 |
Mathematical formula: $E = mc^2$
table_data_to_markdown
Convert structured data (CSV/JSON) to formatted Markdown tables.
Input Schema:
{
data: string; // CSV or JSON data
format: 'csv' | 'json'; // Data format
style?: string; // Table style preset
hasHeader?: boolean; // Whether data includes headers
}
📚 Available Resources
Templates
template://customer-analysis- Business analysis report templatetemplate://academic- Academic paper templatetemplate://business- Professional business reporttemplate://technical- Technical documentationtemplate://minimal- Clean minimal template
Style Guides
style-guide://quick-start- Quick styling referencestyle-guide://advanced- Advanced styling optionsstyle-guide://templates- Template usage guide
Performance Metrics
metrics://conversion-stats- Conversion performance datametrics://memory-usage- Memory usage statistics
🎨 Styling System
Basic Styling
{
document: {
defaultFont: "宋体",
defaultSize: 24,
defaultColor: "000000",
page: {
size: "A4",
orientation: "portrait",
margins: { top: 1440, bottom: 1440, left: 1440, right: 1440 }
}
},
headingStyles: {
h1: { font: "黑体", size: 64, color: "000000", bold: true },
h2: { font: "黑体", size: 32, color: "000000", bold: true }
}
}
Advanced Features
- Theme System: Color and font variables for consistent branding
- Header/Footer: Custom headers and footers with page numbers
- Watermarks: Text watermarks for document protection
- Table Styling: 12+ preset table styles with zebra striping
- Mathematical Formulas: Professional math formula rendering
📊 Table Styles
The server includes 12 professionally designed table styles:
- minimal - Clean modern style with thin borders
- professional - Business style with dark headers
- striped - Zebra striping for better readability
- grid - Complete grid borders for structured data
- elegant - Double borders for formal documents
- colorful - Colorful headers for vibrant presentations
- compact - Minimal margins for data-dense tables
- fresh - Green theme for environmental reports
- tech - Blue tech theme for technical documents
- report - Formal report style with double borders
- financial - Right-aligned numbers for financial data
- academic - Academic paper style
🔧 Configuration
Style Configuration
Full style configuration supports:
- Document-level settings (fonts, colors, page setup)
- Paragraph and heading styles
- Table and list formatting
- Image and code block styling
- Header/footer configuration
- Watermark settings
Transport Options
- STDIO: Standard input/output for local execution
- Streamable HTTP: HTTP transport for remote servers
📁 Project Structure
src/
├── index.ts # Main MCP server implementation
├── converter/
│ └── markdown.ts # Markdown to DOCX converter
├── template/
│ └── presetLoader.ts # Template system
├── types/
│ ├── index.ts # Core types
│ ├── style.ts # Style configuration types
│ └── template.ts # Template types
└── utils/
├── tableProcessor.ts # Table processing utilities
├── mathProcessor.ts # Mathematical formula processing
├── imageProcessor.ts # Image handling utilities
├── styleEngine.ts # Style application engine
└── errorHandler.ts # Error handling utilities
🧪 Testing
Run the test suite:
npm test
Available test scenarios:
- Mathematical formula conversion
- Local image embedding
- Page numbering and headers/footers
- Table styling and data import
- Complete document conversion
🚀 Performance
- Fast Conversion: Optimized processing for large documents
- Memory Efficient: Stream-based processing for minimal memory usage
- Production Ready: Robust error handling and logging
- Scalable: Handles documents of any size efficiently
🤝 Contributing
We welcome contributions! Please see our Contributing Guidelines for details.
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests
- Submit a pull request
📄 License
This project is licensed under the MIT License - see the LICENSE file for details.
🙏 Acknowledgments
- Built with the Model Context Protocol SDK
- Uses docx for Word document generation
- Inspired by the MCP community and ecosystem
☁️ Cloudflare Worker Deployment
This project supports deployment to Cloudflare Workers. Follow these steps to deploy:
Prerequisites
- Install Node.js (version >= 18.0.0)
- Install Wrangler CLI:
npm install -g wrangler - Login to Cloudflare:
wrangler login
Deployment Steps
-
Update
wrangler.tomlwith your account ID:[env.production] account_id = "your-account-id-here" # Replace with your Cloudflare account ID -
Deploy to Cloudflare Workers:
wrangler deploy
API Endpoints
After deployment, your service will be accessible via:
https://your-worker.your-subdomain.workers.dev/- Main info pagehttps://your-worker.your-subdomain.workers.dev/health- Health checkhttps://your-worker.your-subdomain.workers.dev/mcp- MCP protocol endpointhttps://your-worker.your-subdomain.workers.dev/convert- Simplified HTTP APIhttps://your-worker.your-subdomain.workers.dev/.well-known/ai-plugin.json- OpenAI plugin manifesthttps://your-worker.your-subdomain.workers.dev/openapi.yaml- OpenAPI specification (YAML)https://your-worker.your-subdomain.workers.dev/openapi.json- OpenAPI specification (JSON)https://your-worker.your-subdomain.workers.dev/logo.png- Plugin logo
For detailed deployment instructions, see docs/DEPLOYMENT_INSTRUCTIONS.md.
📞 Support
- Issues: GitHub Issues
- Documentation: Full Documentation
- Examples: Example Files
**AI Group Markdown to Word MC
README truncated. View full README on GitHub.
Alternatives
Related Skills
Browse all skillsSearch personal markdown knowledge bases, notes, meeting transcripts, and documentation using QMD - a local hybrid search engine. Combines BM25 keyword search, vector semantic search, and LLM re-ranking. Use when users ask to search notes, find documents, look up information in their knowledge base, retrieve meeting notes, or search documentation. Triggers on "search markdown files", "search my notes", "find in docs", "look up", "what did I write about", "meeting notes about".
Convert documents between 40+ formats using pandoc CLI. Handles Markdown ↔ Word ↔ PDF ↔ HTML ↔ LaTeX ↔ EPUB with smart defaults, professional templates, and comprehensive tooling.
Svelte SPA architecture for Exceptionless. Route groups, lib structure, API client, feature slices, and barrel exports. Keywords: route groups, $lib, feature slices, api-client, barrel exports, index.ts, vertical slices, shared components, generated models, ClientApp structure
Send rich interactive cards to Feishu (Lark) users or groups. Supports Markdown (code blocks, tables), titles, color headers, and buttons.
Convert documents and files to Markdown using markitdown. Use when converting PDF, Word (.docx), PowerPoint (.pptx), Excel (.xlsx, .xls), HTML, CSV, JSON, XML, images (with EXIF/OCR), audio (with transcription), ZIP archives, YouTube URLs, or EPubs to Markdown format for LLM processing or text analysis.
Convert Office documents (Word, Excel, PowerPoint, PDF) to Markdown using Microsoft's markitdown