- Home
- MCP servers
- AI Group Markdown to Word
AI Group Markdown to Word
- typescript
6
GitHub Stars
typescript
Language
5 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"jackdark425-aigroup-mdtoword-mcp": {
"command": "npx",
"args": [
"-y",
"aigroup-mdtoword-mcp"
]
}
}
}You can convert Markdown documents to polished Word files using this MCP server. It supports full Markdown syntax, advanced styling, and professional layouts, making it ideal for generating ready-to-share Word documents from notes, reports, and templates.
How to use
To use this MCP server with an MCP client, start the server locally or connect to it via your chosen MCP client. You will access a Markdown-to-Word conversion capability that accepts Markdown input and returns a styled Word document. You can drive spacing, fonts, headers, footers, and optional elements like a table of contents or watermarks through the client’s styling and configuration features.
How to install
Prerequisites: you need Node.js installed on your system. You will also use an MCP client to interact with the server.
Install using npx (recommended for a quick start) and run the MCP server locally.
Configuration and usage with MCP clients
{
"mcpServers": {
"markdown_to_word": {
"command": "npx",
"args": ["-y", "aigroup-mdtoword-mcp"]
}
}
}
{
"mcpServers": {
"markdown_to_word": {
"command": "uvx",
"args": ["aigroup-mdtoword-mcp"]
}
}
}
Styling and document structure
Configure the document style, page layout, and advanced features through the available styling system. You can set default fonts, font sizes, and page margins, and you can apply heading styles, table formatting, image handling, headers/footers, and watermarks to achieve a professional look.
Table styles and content handling
The server supports multiple table styles and can render mathematical formulas, import data for tables, and apply consistent styling across the document. Use preset table styles to match your branding or document type.
Transport options and environment
Two transport options are available: STDIO for local execution and Streamable HTTP for remote servers. Choose STDIO if you want tight, local control, or HTTP for remote integration.
Tools and inputs
The server provides tools to convert Markdown to Word and to convert structured data to Markdown tables. Provide either markdown content or an input file, specify an output filename, and optionally supply style configurations.
Example inputs and outputs
Examples show how to pass Markdown text to produce a Word document and how to convert CSV or JSON data into Markdown tables that you can include in your document.
Notes on installation and updates
Use the standard package managers to install and run the MCP server. Keep dependencies up to date to ensure compatibility with the latest Word formats and styling features.
Available tools
markdown_to_docx
Converts Markdown content to a Word document with full styling support, accepting Markdown input or a file path and producing a .docx output.
table_data_to_markdown
Transforms structured data (CSV/JSON) into formatted Markdown tables that can be embedded in Word documents.