office-mcp-server
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 |
|---|---|
| word_createB | 创建一个新的 Word 文档 |
| word_add_headingC | 添加标题(支持1-6级) |
| word_add_paragraphC | 添加正文段落 |
| word_add_tableC | 添加表格 |
| word_add_listB | 添加有序/无序列表 |
| word_add_codeC | 添加代码块 |
| word_add_diagramA | 添加 Mermaid 流程图/架构图(自动转换为图片插入) |
| word_saveC | 保存文档 |
| excel_createC | 创建 Excel 工作簿 |
| excel_add_sheetC | 添加工作表 |
| excel_write_dataC | 写入表格数据 |
| excel_add_chartA | 写入图表数据到指定位置(exceljs 不支持直接创建图表对象,数据写入后可在 Excel 中手动创建图表) |
| excel_add_formulaC | 添加公式 |
| excel_set_column_widthC | 设置列宽 |
| excel_merge_cellsC | 合并单元格 |
| excel_saveB | 保存工作簿 |
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 16 tools
Word and Excel tools are clearly separated by prefixes, and each add_* operation targets a distinct content type. The only minor ambiguity is between excel_add_chart and excel_write_data, since both involve writing data, but descriptions clarify the purpose.
All tools follow a consistent verb_noun pattern with resource prefixes (word_, excel_), using lowercase snake_case throughout. The verbs are descriptive and predictable across both document types.
16 tools is slightly above the typical 3-15 range, but each tool serves a distinct purpose for Word and Excel document generation. The count feels reasonable for covering two office formats without being bloated.
The tool set covers the full lifecycle of creating and saving Word and Excel documents, with comprehensive content-adding operations. Minor gaps include lack of editing existing files, cell styling, and true chart creation, but these are outside the core generation scope.