mcp-server-docx
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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 | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| create_documentC | Create a new Word document |
| add_paragraphC | Add a paragraph with optional formatting |
| add_headingC | Add a heading with optional formatting |
| add_bullet_listC | Add a bulleted list |
| save_documentC | Save the document to disk |
| create_document_from_contentB | Create a complete Word document in a single call (FAST - use this instead of multiple calls) |
| create_document_from_markdownA | 🚀 RECOMMENDED: Create a Word document from markdown text (MOST INTUITIVE - just write natural markdown!) |
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 7 tools
Most tools have clearly distinct purposes, but the three document creation tools (create_document, create_document_from_content, create_document_from_markdown) overlap in function. Descriptions with 'FAST' and 'RECOMMENDED' help disambiguate, so agents can typically choose correctly.
All tools follow a consistent verb_noun pattern with lowercase and underscores. Verbs like 'add_', 'create_', and 'save_' are used predictably, and 'create_document' variants share a common prefix. No mixing of conventions.
With 7 tools, the server is well-scoped for creating Word documents. It covers creation, content addition (three common types), and saving. The three creation tools are justified by different input modes, and no tool feels superfluous.
The tool set covers basic document creation (create, add paragraphs/lists/headings, save) but lacks support for tables, images, hyperlinks, or more advanced formatting. The markdown tool partially compensates, but there are notable gaps for a document creation server.