# io.github.jackdark425/aigroup-mdtoword-mcp (npm · aigroup-mdtoword-mcp)

本地 Markdown 到 Word 文档转换工具，支持最新 MCP 协议特性、完整的页眉页脚页码功能、增强的表格功能、数据导入和数学公式支持，修复本地相对路径图片嵌入问题

- Trust score: 65/100 (medium)
- Change this week: +18
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `aigroup-mdtoword-mcp`: 65/100 (this document), [markdown](https://verifymcp.io/servers/jackdark425-aigroup-mdtoword-mcp/aigroup-mdtoword-mcp.md), [page](https://verifymcp.io/servers/jackdark425-aigroup-mdtoword-mcp/aigroup-mdtoword-mcp)

## Channel facts

- Registry: `npm`
- Package: `aigroup-mdtoword-mcp`
- Version: `4.0.2`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (157 of 159), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (157 of 159), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 101 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 55/100
  - 42% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 487 tokens (~44/item across 11 items; 4 tools + 7 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add jackdark425-aigroup-mdtoword-mcp -- npx -y aigroup-mdtoword-mcp
```

### Codex

```bash
codex mcp add jackdark425-aigroup-mdtoword-mcp -- npx -y aigroup-mdtoword-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "jackdark425-aigroup-mdtoword-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "aigroup-mdtoword-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add jackdark425-aigroup-mdtoword-mcp --command npx --arg -y --arg aigroup-mdtoword-mcp
```

### Hermes

```yaml
mcp_servers:
  jackdark425-aigroup-mdtoword-mcp:
    command: "npx"
    args: ["-y", "aigroup-mdtoword-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "jackdark425-aigroup-mdtoword-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "aigroup-mdtoword-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 65, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-08-02 (score 61, +39)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional regression] Schema quality: 42 → unverified
- [functional regression] Security disclosure: fail → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Schema quality: unverified → good
- [functional] Licence: MIT

### 2026-07-31 (score 22, −7)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 29, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 47)

First indexed and scored.

## MCP tools (4)

### `markdown_to_docx` (~224 tokens)

Markdown 转 Word

将Markdown文档转换为Word文档（DOCX格式），支持样式配置、模板系统和多种图像嵌入方式（本地文件、网络图片、Base64编码）

Input parameters:

- `filename` (string, required): 输出的Word文档文件名，必须以.docx结尾
- `inputPath` (string): Markdown文件路径（与markdown二选一）
- `markdown` (string): Markdown格式的文本内容（与inputPath二选一）
- `outputPath` (string): 输出目录，默认为当前工作目录
- `styleConfig` (object): 样式配置对象。支持主题系统（theme）、水印（watermark）、页眉页脚（headerFooter）、自动目录（tableOfContents）、表格样式（tableStyles）、图片样式（imageStyles）等。可与template组合使用以覆盖模板的默认样式
- `template` (object): 模板配置。使用预设模板可以快速应用专业样式，也可以与styleConfig组合使用

Output parameters:

- `filename` (string)
- `message` (string)
- `path` (string)
- `size` (number)
- `success` (boolean)

### `create_table_from_csv` (~72 tokens)

从CSV创建表格

将CSV数据转换为可用于文档的表格数据

Input parameters:

- `csvData` (string, required): CSV格式的数据
- `delimiter` (string): 分隔符
- `hasHeader` (boolean): 第一行是否为表头
- `styleName` (string): 表格样式名称

Output parameters:

- `columnCount` (number)
- `preview` (string)
- `rowCount` (number)
- `styleName` (string)
- `success` (boolean)

### `create_table_from_json` (~69 tokens)

从JSON创建表格

将JSON数组数据转换为可用于文档的表格数据

Input parameters:

- `columns` (array): 要包含的列名（可选，默认全部）
- `jsonData` (string, required): JSON格式的数据（数组）
- `styleName` (string): 表格样式名称

Output parameters:

- `columnCount` (number)
- `preview` (string)
- `rowCount` (number)
- `styleName` (string)
- `success` (boolean)

### `list_table_styles` (~21 tokens)

列出表格样式

获取所有可用的预定义表格样式

Output parameters:

- `count` (number)
- `styles` (array)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/jackdark425-aigroup-mdtoword-mcp/aigroup-mdtoword-mcp#diagnostics

## Score history

- 2026-08-03: 65
- 2026-08-02: 61
- 2026-08-01: 22
- 2026-07-31: 22
- 2026-07-30: 29
- 2026-07-28: 47
- 2026-07-27: 47

## Links

- npm package: https://www.npmjs.com/package/aigroup-mdtoword-mcp
- Socket report: https://socket.dev/npm/package/aigroup-mdtoword-mcp
- Repository: https://github.com/jackdark425/aigroup-mdtoword-mcp
- Changelog RSS feed: https://verifymcp.io/servers/jackdark425-aigroup-mdtoword-mcp/aigroup-mdtoword-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/jackdark425-aigroup-mdtoword-mcp/aigroup-mdtoword-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/jackdark425-aigroup-mdtoword-mcp/aigroup-mdtoword-mcp
