docforge-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MCP_PORT | No | Port for HTTP server. Default is 8958. Only used when MCP_TRANSPORT is 'streamable-http'. | 8958 |
| MCP_TRANSPORT | No | Transport mode. Default is stdio. Set to 'streamable-http' for HTTP server. | stdio |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| extensions | {
"io.modelcontextprotocol/ui": {}
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| formal_letterA | Generate a formal business letter with customizable recipient, subject, body, and sender information. All placeholder values support markdown formatting:
|
| create_excel_from_markdownA | Converts markdown content with tables and formulas to Excel (.xlsx) format. Use '## Sheet: Name' headings to create multiple sheets. |
| create_word_from_markdownA | Converts markdown content to a professionally formatted Word (.docx) document. Supports headings, lists, tables, images, block quotes, page breaks, horizontal lines, text alignment, and rich inline formatting. |
| create_powerpoint_presentationC | Creates PowerPoint presentations from structured slides. |
| create_email_draftC | Creates an email draft in EML format with HTML content using preset professional styling. |
| create_xml_fileB | Creates an XML file from provided XML content. |
| read_documentA | Extract all text from an existing document (DOCX, XLSX, PPTX, or PDF) |
| get_document_infoB | Get metadata and statistics from an existing document |
| get_docx_paragraphsA | List all paragraphs from a DOCX file with index and style |
| get_docx_tablesB | Extract tables from a DOCX file with content |
| get_xlsx_sheetsA | Get sheet content from an XLSX file |
| get_pptx_slidesC | List all slides from a PPTX file with content |
| get_pdf_pagesB | Extract text from specific pages of a PDF file |
| apply_excel_formattingB | Apply conditional formatting rules to an Excel sheet |
| render_docx_templateC | Render a DOCX template with variables, conditionals, and loops |
| render_pptx_templateB | Render a PPTX template with variables, conditionals, and loops |
| merge_docx_filesB | Merge multiple DOCX files into one document |
| merge_pptx_filesA | Merge multiple PPTX files into one presentation |
| apply_pptx_templateC | Replace placeholder text in a PPTX slide |
| add_shape_to_slideC | Add a shape (rectangle, oval, triangle) to a PPTX slide |
| duplicate_pptx_slideC | Duplicate a slide in a PPTX file |
| create_excel_chartB | Create a chart (bar, line, pie, column) in an Excel file |
| add_image_to_docxC | Add an image to a DOCX file |
| add_header_footerC | Add header and/or footer to a DOCX file |
| set_page_marginsB | Set page margins for a DOCX file (in cm) |
| add_bullet_listB | Add a bullet list to a DOCX file |
| add_numbered_listC | Add a numbered list to a DOCX file |
| merge_table_cellsB | Merge cells in a DOCX table |
| create_pdf_from_markdownB | Generate a PDF document from Markdown content |
| convert_docx_to_pdfC | Convert an existing DOCX file to PDF |
| edit_docx_paragraphB | Edit a paragraph in an existing DOCX file by index |
| delete_docx_paragraphB | Delete a paragraph from a DOCX file by index |
| search_replace_docxC | Search and replace text in a DOCX file |
| insert_docx_paragraphB | Insert a new paragraph at a specific position in a DOCX file |
| edit_xlsx_cellC | Edit a cell value in an XLSX file |
| insert_xlsx_rowC | Insert a new row in an XLSX sheet |
| delete_xlsx_rowB | Delete a row from an XLSX sheet |
| edit_pptx_slide_textB | Replace text in a specific PPTX slide |
| delete_pptx_slideB | Delete a slide from a PPTX file |
| reorder_pptx_slidesB | Reorder slides in a PPTX file |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 40 tools
Tools are largely grouped by file type, but several overlap in purpose: render_docx_template, create_word_from_markdown, and add_bullet_list/add_numbered_list all generate DOCX content, and apply_pptx_template vs edit_pptx_slide_text vs render_pptx_template all modify presentation text. The distinctions require careful reading of each description.
Most tools follow a clear verb_noun pattern (read_document, get_docx_paragraphs, merge_docx_files, delete_pptx_slide). Minor deviations exist: formal_letter is a content-type verb instead of a file operation, and create_excel_from_markdown uses 'create' with a format suffix, but overall the pattern is predictable.
40 tools is excessive for a document manipulation server. Many are micro-operations (set_page_margins, merge_table_cells, add_shape_to_slide) that could be consolidated into broader editing commands. The count creates a heavy, hard-to-navigate surface.
The server covers a broad range of document operations: read, create, edit, merge, convert, and format across DOCX, XLSX, PPTX, and PDF. Minor gaps exist (no PDF editing/merging, no XLSX delete/rename sheet, no document deletion), but the core lifecycle for the main formats is well covered.