DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Docx Mcp — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
D

dsh-docx-mcp

Docx Mcp

Zero-dependency MCP stdio server that generates real .docx files from a JSON spec — Chinese office-automation vertical for DeepSeek Harness.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:helibeiqi/dsh-docx-mcp#17465933b4ec9cbf1ffadc17abfe94933d47736e
READMECompatibilityVersions

Compatibility and provenance

Docx Mcp is published as dsh-docx-mcp and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
8/28/2026

Versions

0.1.0stable
8/28/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
8/28/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in productivity-workflow.

Deepseek Ipptdeepseek-ipptiPolloWork PPT Studio and its curated slide templates as a native DeepSeek Harness conversation view.Mnemondsh-mnemonComposable three-tier memory control plane for DeepSeek Harness: persistent runtime context, searchable project documents, pluggable long-term memory, guarded strategies, WebUI, and headless tools.Codex Ui@michengai/dsh-codex-uiDSH Codex UI — 为 DeepSeek Harness Web 提供 Codex 风格侧栏、工作区会话树、全局搜索和轮次导航 · A Codex-style sidebar, workspace session tree, global search, and turn navigation for DSH WebRewind Plugindsh-rewind-pluginIn-window conversation rewind with workspace file restore · 同窗口内对话回退并可还原工作区文件

README

dsh-docx-mcp

零依赖的 MCP stdio 服务,根据 JSON 规格生成真正可打开的 .docx 文件(标题 / 段落 / 项目符号列表 / 表格)。 属于 helibeiqi 的 DeepSeek Harness 插件矩阵中的 中文办公自动化 垂直。

  • 纯 Node 实现,手写 OOXML + store-zip,无需 npm install、无第三方依赖 —— 与 dsh-quant-data-mcp 同源的「自包含、抗重装」哲学。
  • 通过 dsh 的 MCP 桥接(@deepseek-ai/dsh-mcp-client)注册为 docx 工具,供 dsh agent 直接调用。

工具:docx_generate

参数类型说明
titlestring文档大标题(自动作为一级标题插入开头)
filenamestring输出文件名(可含或不含 .docx)
outDirstring输出目录,默认 ~/dsh-docx-output
blocksarray内容块数组(见下)

blocks 内容块

type字段说明
headinglevel(1-3), text标题
paragraphruns(数组 {text,bold}) 或 text,bold段落;runs 支持同一段落内混合加粗
bulletitems(string[]) 或 text项目符号列表
tablerows(string[][])表格,每行是一组单元格

调用示例

{
  "title": "员工劳动合同续签通知书",
  "blocks": [
    { "type": "paragraph", "runs": [
      { "text": "致:", "bold": false },
      { "text": "张三", "bold": true },
      { "text": "(工号 E000123)" }
    ]},
    { "type": "heading", "level": 2, "text": "一、续签事项" },
    { "type": "bullet", "items": ["合同期限:3 年", "试用期:无", "工时制度:标准工时"] },
    { "type": "heading", "level": 2, "text": "二、薪资结构" },
    { "type": "table", "rows": [
      ["项目", "占比"], ["基本工资", "40%"], ["岗位工资", "40%"], ["绩效工资", "20%"]
    ]}
  ]
}

返回 { "path": "...", "bytes": N, "blocks": N }。


与 dsh 集成

本仓库是一个 dsh bundle:package.json 声明 dsh.bundle.patch 指向 cordis.patch.yml, 后者以 - insert: 形式向 @deepseek-ai/dsh-mcp-client 注册一个 docx MCP server 行。

路径约定:当前 cordis.patch.yml 中 args / cwd 写的是作者本机的绝对路径 C:\Users\helib\dsh-docx-mcp\...。部署到其他机器时,请改为该机器上 docx-mcp-server.mjs 的实际路径; 或通过 QUANT_MCP_NODE 环境变量指定 Node 运行时(与 dsh-quant-data-mcp 同款硬化写法,可兼容 managed-node 版本目录漂移)。


本地运行 / 自测

# 直接起 MCP 服务(stdio)
node docx-mcp-server.mjs

# 自测:生成 selftest.docx 并校验为合法 OOXML 包
node _selftest.mjs

Roadmap

  • docx_fill_template:对含 {{占位符}} 的 .docx 模板做字段填充(HR 合同 / 通知书高频场景)。
  • 页眉页脚、多级编号、字体 / 对齐等段落属性。
  • 与 dsh-excel-kit 联动(表格数据 → 文档)。

许可

MIT © helibeiqi —— 详见 dsh-ecosystem。