# io.github.Cail726/chinese-text-tools (npm · chinese-text-tools)

Claude Code 中文写作四合一工具箱：文本分析（字数/段落/阅读时间）、结构化大纲生成（论文/小说/商业计划书）、GB/T 7714 参考文献格式化、中文字频统计。纯本地运行。

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

## Components

- npm · `chinese-text-tools`: 68/100 (this document), [markdown](https://verifymcp.io/servers/cail726-chinese-text-tools/chinese-text-tools.md), [page](https://verifymcp.io/servers/cail726-chinese-text-tools/chinese-text-tools)

## Channel facts

- Registry: `npm`
- Package: `chinese-text-tools`
- Version: `1.0.3`
- 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 (94 of 95), 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 (94 of 95), 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 16 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 462 tokens (~115/item across 4 items; 4 tools + 0 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.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add cail726-chinese-text-tools -- npx -y chinese-text-tools
```

### Codex

```bash
codex mcp add cail726-chinese-text-tools -- npx -y chinese-text-tools
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "cail726-chinese-text-tools": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "chinese-text-tools"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add cail726-chinese-text-tools --command npx --arg -y --arg chinese-text-tools
```

### Hermes

```yaml
mcp_servers:
  cail726-chinese-text-tools:
    command: "npx"
    args: ["-y", "chinese-text-tools"]
```

### Other

```json
{
  "mcpServers": {
    "cail726-chinese-text-tools": {
      "command": "npx",
      "args": [
        "-y",
        "chinese-text-tools"
      ]
    }
  }
}
```

## 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-02 (score 68, +47)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [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] Stability: unverified → 0.23
- [functional improvement] Schema quality: unverified → good
- [functional] Licence: MIT

### 2026-08-01 (score 21, +16)

- [functional improvement] Tool coverage: unverified → 100

### 2026-07-31 (score 5, −19)

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

### 2026-07-30 (score 24, −22)

- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

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

First indexed and scored.

## MCP tools (4)

### `analyze_text` (~74 tokens)

分析中文/英文混合文本。返回 editorWordCount（与番茄/作家助手对齐的字数）、段落数、平均段长、预估阅读时间。适用于小说章节、论文章节的快速评估。

Input parameters:

- `text` (string, required): 要分析的文本内容

### `generate_outline` (~96 tokens)

根据主题生成结构化大纲。支持三种类型：paper（学术论文）、novel（小说）、business（商业计划书）。支持三级详细程度：brief（仅一级标题）、medium（二级）、detailed（三级）。

Input parameters:

- `detailLevel` (string): 详细程度，默认 detailed
- `topic` (string, required): 主题/标题
- `type` (string): 大纲类型，默认 paper

### `format_gbt7714` (~220 tokens)

将文献信息格式化为 GB/T 7714-2015 标准引用格式（中文毕业论文通用格式）。支持期刊论文、图书、学位论文、专利、标准、在线资源、会议论文。

Input parameters:

- `accessDate` (string): 引用日期，如 '2025-07-17'（在线资源）
- `authors` (string, required): 作者，多人用分号分隔，如 '张三; 李四'
- `doi` (string): DOI 号
- `issue` (string): 期号（期刊论文）
- `journal` (string, required): 期刊名/出版社/学校名
- `pages` (string): 页码，如 '45-50'
- `title` (string, required): 文献标题
- `type` (string): 文献类型，默认 journal
- `url` (string): 网址（在线资源）
- `volume` (string): 卷号（期刊论文）
- `year` (string, required): 出版年份

### `count_frequency` (~72 tokens)

统计中文文本的字频分布。用于分析写作风格、检测重复用词、优化文本表达。默认返回前20个高频字。

Input parameters:

- `text` (string, required): 要分析的文本
- `topN` (number): 返回前N个高频字，默认20

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/cail726-chinese-text-tools/chinese-text-tools#diagnostics

## Score history

- 2026-08-03: 68
- 2026-08-02: 68
- 2026-08-01: 21
- 2026-07-31: 5
- 2026-07-30: 24
- 2026-07-28: 46
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/chinese-text-tools
- Socket report: https://socket.dev/npm/package/chinese-text-tools
- Repository: https://github.com/Cail726/chinese-text-tools
- Changelog RSS feed: https://verifymcp.io/servers/cail726-chinese-text-tools/chinese-text-tools/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/cail726-chinese-text-tools/chinese-text-tools/changelog.json
- HTML version of this page: https://verifymcp.io/servers/cail726-chinese-text-tools/chinese-text-tools
