AI Group Markdown to Word MCP Server

AI Group Markdown to Word MCP Server

Converts Markdown documents to professional Word documents with advanced formatting capabilities including mathematical formulas, custom styling, tables, images, headers/footers, and watermarks.

Category
Visit Server

README

AI Group Markdown to Word MCP Server

License: MIT Node.js Version MCP Protocol

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

๐Ÿš€ 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 template
  • template://academic - Academic paper template
  • template://business - Professional business report
  • template://technical - Technical documentation
  • template://minimal - Clean minimal template

Style Guides

  • style-guide://quick-start - Quick styling reference
  • style-guide://advanced - Advanced styling options
  • style-guide://templates - Template usage guide

Performance Metrics

  • metrics://conversion-stats - Conversion performance data
  • metrics://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:

  1. minimal - Clean modern style with thin borders
  2. professional - Business style with dark headers
  3. striped - Zebra striping for better readability
  4. grid - Complete grid borders for structured data
  5. elegant - Double borders for formal documents
  6. colorful - Colorful headers for vibrant presentations
  7. compact - Minimal margins for data-dense tables
  8. fresh - Green theme for environmental reports
  9. tech - Blue tech theme for technical documents
  10. report - Formal report style with double borders
  11. financial - Right-aligned numbers for financial data
  12. 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.

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests
  5. Submit a pull request

๐Ÿ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

๐Ÿ™ Acknowledgments

๐Ÿ“ž Support


AI Group Markdown to Word MCP Server - Professional document conversion powered by MCP protocol.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured