# io.github.datoushiwo/wechat-writer-mcp (npm · wechat-writer-mcp)

面向技术博主的 AI 内容加工流水线 MCP —— 从原始素材到公众号草稿箱

- Trust score: 70/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-17

## Components

- npm · `wechat-writer-mcp`: 70/100 (this document), [markdown](https://verifymcp.io/servers/datoushiwo-wechat-writer-mcp/wechat-writer-mcp.md), [page](https://verifymcp.io/servers/datoushiwo-wechat-writer-mcp/wechat-writer-mcp)

## Channel facts

- Registry: `npm`
- Package: `wechat-writer-mcp`
- Version: `0.1.1`
- 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-17.

- **Supply Chain Security**: 98/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - No install/post-install scripts declared.
  - 33 of 108 dependencies flagged as unhealthy.
- **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 2 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 82/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 477 tokens (~119/item across 4 items; 4 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **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.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add datoushiwo-wechat-writer-mcp -- npx -y wechat-writer-mcp
```

### Codex

```bash
codex mcp add datoushiwo-wechat-writer-mcp -- npx -y wechat-writer-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add datoushiwo-wechat-writer-mcp --command npx --arg -y --arg wechat-writer-mcp
```

### Hermes

```yaml
mcp_servers:
  datoushiwo-wechat-writer-mcp:
    command: "npx"
    args: ["-y", "wechat-writer-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "datoushiwo-wechat-writer-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "wechat-writer-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-14 (score 70)

First indexed and scored.

## MCP tools (4)

### `import_source` (~95 tokens)

导入原始内容（本地 markdown 文件或 URL 网页），准备进行公众号加工。返回 raw_markdown 和元数据。

Input parameters:

- `path` (string): 本地文件路径（source_type=file 时必填）
- `source_type` (string, required): 来源类型：file 读取本地文件，url 抓取网页正文
- `url` (string): 网页 URL（source_type=url 时必填）

### `transform_for_wechat` (~94 tokens)

将 markdown 内容转换为公众号适配的 HTML 格式。自动段落切分、代码块处理、超链接转脚注、添加头尾模板，并生成 3 个标题候选。

Input parameters:

- `apply_template` (boolean): 是否应用头尾模板
- `raw_markdown` (string, required): 原始 markdown 内容
- `title` (string): 文章原标题（用于生成标题候选）

### `estimate_originality` (~84 tokens)

对内容做原创度自评，辅助决策是否点"原创"标记。基于用户自己的历史草稿做比对，不能替代微信官方查重。

Input parameters:

- `check_against_history` (boolean): 是否与草稿箱历史内容比对
- `content` (string, required): 待检查的文章内容（markdown 或纯文本）

### `save_to_wechat_draft` (~204 tokens)

将加工好的内容存入公众号草稿箱。永远只存草稿，不会自动群发/发布。存入后需手动到公众号后台发布。

Input parameters:

- `author` (string): 作者名（默认使用环境变量配置）
- `content_source_url` (string): 原文链接（可选）
- `cover_path` (string): 封面图片路径（cover_strategy=specified 时使用）
- `cover_strategy` (string): 封面策略：random_from_folder 从目录随机选、specified 指定路径、none 不设封面
- `digest` (string): 摘要（不超过 120 字）
- `html_content` (string, required): 文章 HTML 正文（transform_for_wechat 的输出）
- `need_open_comment` (boolean): 是否打开评论
- `only_fans_can_comment` (boolean): 是否仅粉丝可评论
- `title` (string, required): 文章标题

## Diagnostics

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

## Score history

- 2026-08-17: 70
- 2026-08-16: 70
- 2026-08-15: 70
- 2026-08-14: 70

## Links

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