Document Generator MCP
Transforms Markdown-formatted text, including headings, lists, blockquotes, and text styling, into professionally formatted Word and PDF documents.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Document Generator MCPGenerate a professional PDF report for the latest sales analysis"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Document Generator MCP
An MCP (Model Context Protocol) server to generate professional Word (.docx) and PDF documents from any AI agent that supports MCP, including Claude Desktop, Amazon Q Developer, Cline, Continue, and others.
🚀 Features
✅ Generate Word documents (.docx)
✅ Generate PDF documents
✅ Auto-detect JSON blocks (no backticks needed!) 🆕
✅ Professional syntax highlighting (VS Code Dark theme)
✅ Smart pagination (no content cuts between pages)
✅ 100% responsive formatting (respects A4 margins)
✅ Markdown support (headings, lists, bold, italic, code blocks)
✅ Automatic professional formatting
✅ Metadata (author, creation date)
Related MCP server: Spire.Doc MCP Server
📦 Installation
Via NPX (Recommended)
npx document-generator-mcp@latestVia NPM Global
npm install -g document-generator-mcp⚙️ Configuration
Claude Desktop
Locate the configuration file:
Linux:
~/.config/claude-desktop/claude_desktop_config.jsonmacOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Add this configuration:
{
"mcpServers": {
"document-generator": {
"command": "npx",
"args": ["--yes", "--cache", "/tmp/.npx-cache", "document-generator-mcp@latest"]
}
}
}Restart Claude Desktop
Amazon Q Developer
Open VS Code with Amazon Q extension
Access Amazon Q settings
Add the MCP server:
{
"mcpServers": {
"document-generator": {
"command": "npx",
"args": ["--yes", "--cache", "/tmp/.npx-cache", "document-generator-mcp@latest"]
}
}
}Other MCP Agents (Cline, Continue, etc.)
For other agents that support MCP, add the server configuration:
{
"name": "document-generator",
"command": "npx",
"args": ["--yes", "--cache", "/tmp/.npx-cache", "document-generator-mcp@latest"]
}Check your agent's specific documentation for configuration details.
🎯 How to Use
After configuration, you can use natural commands in any MCP agent:
Example Prompts
"Create a Word document about sales analysis"
"Generate a PDF report about the project"
"Make a technical manual in Word and PDF"
"Create API documentation in Word format"
"Document this JavaScript code with examples"
Available Tools
gerar_documento_word: Creates Word documents, PDF, or bothgerar_documento_pdf: Creates PDF documents only
📝 Supported Formatting
The MCP automatically processes:
Markdown
# Heading 1→ Heading 1 (20pt)## Heading 2→ Heading 2 (16pt, blue)### Heading 3→ Heading 3 (14pt)#### Heading 4→ Heading 4 (12pt)- Item→ Bulleted list1. Item→ Numbered list**text**→ Bold text*text*→ Italic text***text***→ Bold + Italic`code`→ Inline code> quote→ Blockquote---→ Horizontal line
Code Blocks
```javascript
async function example() {
const data = await fetch('api.com');
return data.json();
}
```Auto-Detected JSON (New in v1.0.9!)
JSON objects and arrays are automatically detected and formatted as code blocks:
{
"status": "success",
"data": {
"users": [
{"id": 1, "name": "John"}
]
}
}No need for ``` backticks! Just paste your JSON and it will be automatically formatted with syntax highlighting.
Syntax Highlighting Colors (VS Code Dark theme):
🟣 Keywords:
async,function,const,await, etc. (#C586C0)🟠 Strings:
"text",'text'(#CE9178)🟢 Comments:
// comment,/* block */(#6A9955)🟢 Numbers:
42,3.14,0xFF(#B5CEA8)🟡 Functions:
fetch,console.log(#DCDCAA)🔵 Types/Classes:
Promise,Array(#4EC9B0)
🎨 Features Highlights
Professional Syntax Highlighting
Dark background (#1E1E1E) for code blocks
VS Code Dark theme colors
Language indicator header
Automatic line wrapping
Smart Pagination
Code blocks never split between pages
Headings kept with following content
Automatic page breaks when needed
Consistent spacing
Responsive Formatting
All content respects A4 margins
Automatic line breaks for long text
Proper width control for all elements
No content overflow
🧪 Testing
To test if it's working:
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}' | npx document-generator-mcp@latestExpected output: List of available tools (gerar_documento_word, gerar_documento_pdf)
🔧 Troubleshooting
Error "use strict: not found"
If you get this error, npm is using an old cached version. Solutions:
Use this optimized configuration:
{
"mcpServers": {
"document-generator": {
"command": "npx",
"args": ["--yes", "--cache", "/tmp/.npx-cache", "document-generator-mcp@latest"]
}
}
}Or clear the cache:
npm cache clean --force
rm -rf ~/.npm/_npxDocuments not generating
Check if
generated_documents/folder existsVerify Node.js version (18+ required)
Check MCP server logs in your agent
📁 Generated Files
Documents are saved in ./generated_documents/ with unique timestamps.
Example: api_documentation_1759715959772.docx
🤖 Compatible Agents
This MCP works with any agent that implements the Model Context Protocol:
✅ Claude Desktop - Full native support
✅ Amazon Q Developer - Support via VS Code
✅ Cline (VS Code) - VS Code extension
✅ Continue - Code assistant with MCP
✅ Other MCP agents - Any compatible implementation
🤝 Contributing
Contributions are welcome! Open issues or pull requests on GitHub.
Development Setup
git clone https://github.com/thiagotw10/document-generator-mcp.git
cd document-generator-mcp
npm install
npm run build📄 License
MIT License - see LICENSE file for details.
🔗 Links
NPM Package: https://www.npmjs.com/package/document-generator-mcp
GitHub Repository: https://github.com/thiagotw10/document-generator-mcp
MCP Documentation: https://modelcontextprotocol.io
Amazon Q MCP Guide: https://docs.aws.amazon.com/amazonq/latest/qdeveloper-ug/qdev-mcp.html
⚠️ Requirements
Node.js: 18+ required
Platforms: Linux, macOS, Windows
MCP Support: Any agent implementing Model Context Protocol
📊 Changelog
v1.0.9 (Latest)
✅ Auto-detect JSON blocks - No need for ``` backticks around JSON
✅ Automatically formats JSON objects and arrays as code blocks
✅ Validates JSON syntax before formatting
✅ Applies syntax highlighting to detected JSON
✅ Works in both Word and PDF documents
v1.0.8
✅ English documentation for international audience
✅ Improved README structure
v1.0.7
✅ Professional syntax highlighting in PDF (VS Code Dark theme)
✅ 100% responsive formatting (respects A4 margins)
✅ Smart pagination (no content cuts)
✅ Improved spacing after code blocks
✅ Visual parity between Word and PDF
Made with ❤️ by Thiago Oliveira
Transform natural language into professional documents with AI!
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceEnables AI assistants to generate professional PDF documents from markdown content with advanced typography, syntax highlighting, math equations, dark mode, and customizable styling options.Last updatedMIT
- Alicense-qualityFmaintenanceEnables AI agents to create, read, modify, and convert Word documents without Microsoft Word, supporting 18 tools for document operations, paragraph manipulation, table management, formatting, and conversion between multiple formats including PDF, HTML, and Markdown.Last updated6MIT
- Alicense-qualityCmaintenanceEnables AI agents to read, edit, and create Microsoft Word documents (.docx) with support for rich text, tables, and images, deployable locally or via SSE.Last updated3MIT
- Alicense-qualityDmaintenanceEnables AI agents to generate a variety of documents (PPTX presentations, DOCX reports, PDF invoices, XLSX spreadsheets) locally from JSON specs, without any API keys or network calls.Last updated2561MIT
Related MCP Connectors
AI document editing for agents: draft, edit, export .docx/PDF. 37 MCP tools; agent self-signup.
Turn a description into a shareable, editable PDF — invoices, certificates, reports, resumes.
Use your own Word templates to convert Markdown → DOCX/PDF/HTML from any MCP-compatible AI.
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/thiagotw10/document-generator-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server