MCP Server Production v1.0

Pandoc Enhanced MCP

Advanced document conversion server supporting multiple formats. Convert between Markdown, HTML, PDF, DOCX, and more with custom templates and batch processing.

15+
Formats
🎨
Custom Templates
Batch Processing
🔧
Custom Filters

Quick Setup

1. Install Pandoc & MCP Server

# Install Pandoc
brew install pandoc  # macOS
# or: apt-get install pandoc  # Linux

# Install MCP server
git clone https://github.com/username/pandoc-mcp.git
cd pandoc-mcp
pip install -e .

2. Configure Claude Desktop

{
  "mcpServers": {
    "pandoc": {
      "command": "python",
      "args": ["-m", "pandoc_mcp.server"],
      "cwd": "/path/to/pandoc-mcp"
    }
  }
}

3. Test Conversion

Try these commands with your AI assistant:

  • • "Convert README.md to PDF"
  • • "Convert my document.docx to Markdown"
  • • "Batch convert all .md files to HTML"

Supported Formats

📝 Text Formats

  • • Markdown (.md)
  • • HTML (.html)
  • • Plain Text (.txt)
  • • reStructuredText (.rst)
  • • LaTeX (.tex)

📄 Document Formats

  • • PDF (.pdf)
  • • Microsoft Word (.docx)
  • • OpenDocument (.odt)
  • • EPUB (.epub)
  • • Rich Text Format (.rtf)

📊 Presentation Formats

  • • PowerPoint (.pptx)
  • • Reveal.js slides
  • • Beamer (LaTeX slides)
  • • S5 HTML slides

💻 Code Documentation

  • • Jupyter Notebooks (.ipynb)
  • • AsciiDoc (.adoc)
  • • MediaWiki markup
  • • Org-mode (.org)

Key Features

🎨

Custom Templates

Use custom templates for consistent branding and styling across conversions.

Batch Processing

Convert entire directories of files at once with consistent settings.

🔧

Custom Filters

Apply Pandoc filters for advanced transformations and processing.

Common Use Cases

📚 Documentation Publishing

Convert Markdown documentation to PDF, EPUB, or HTML for different distribution channels.

📝 Note Taking & PKM

Export Obsidian/Notion notes to DOCX for sharing with non-technical colleagues.

📄 Report Generation

Generate professional PDF reports from Markdown templates with custom styling.

🎓 Academic Writing

Convert between LaTeX, DOCX, and PDF while preserving citations and formatting.

Related