# io.github.muzimu217/DeliverKit (npm · deliverkit-mcp)

Plan and verify multi-ecosystem packaging (Linux, Windows, macOS, HarmonyOS) for AI agents.

- Trust score: 75/100 (medium)
- Change this week: +5
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-21

## Components

- npm · `deliverkit-mcp`: 75/100 (this document), [markdown](https://verifymcp.io/servers/muzimu217-deliverkit/deliverkit-mcp.md), [page](https://verifymcp.io/servers/muzimu217-deliverkit/deliverkit-mcp)

## Channel facts

- Registry: `npm`
- Package: `deliverkit-mcp`
- Version: `0.3.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-09-21.

- **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 101 dependencies flagged as unhealthy.
- **Provenance & Transparency**: 48/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 9 days ago).
  - Publishes a security disclosure policy (SECURITY.md).
- **Schema Quality & AI Usability**: 73/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 1558 tokens (~141/item across 11 items; 11 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 33/100
  - Stability observed for 10 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.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - We read all 11 captured tool definition(s), and no name or description among them implies an irreversible operation.
  - An AI judge read all 11 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### How do I install the io.github.muzimu217/DeliverKit MCP server?

io.github.muzimu217/DeliverKit runs locally as an npm package, launched with npx -y deliverkit-mcp. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add muzimu217-deliverkit -- npx -y deliverkit-mcp
```

### Cursor

```json
{
  "mcpServers": {
    "muzimu217-deliverkit": {
      "command": "npx",
      "args": [
        "-y",
        "deliverkit-mcp"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "muzimu217-deliverkit": {
      "command": "npx",
      "args": [
        "-y",
        "deliverkit-mcp"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add muzimu217-deliverkit -- npx -y deliverkit-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add muzimu217-deliverkit --command npx --arg -y --arg deliverkit-mcp
```

### Hermes

```yaml
mcp_servers:
  muzimu217-deliverkit:
    command: "npx"
    args: ["-y", "deliverkit-mcp"]
```

### Netclaw

```json
{
  "McpServers": {
    "muzimu217-deliverkit": {
      "Transport": "stdio",
      "Command": "npx",
      "Arguments": [
        "-y",
        "deliverkit-mcp"
      ]
    }
  }
}
```

### Vellum

```bash
assistant mcp add muzimu217-deliverkit -t stdio -c npx -a -y deliverkit-mcp
```

### Other

```json
{
  "mcpServers": {
    "muzimu217-deliverkit": {
      "command": "npx",
      "args": [
        "-y",
        "deliverkit-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-09-21 (score 75, +1)

No change was recorded against any check on this day. Stability & Change Management went from 30 to 33. That category is still filling its 30-day observation window: 9 days of observed history at the previous scan, 10 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-09-19 (score 74, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-09-12 (score 70, +15)

- [security improvement] Malware scan: unverified → pass

### 2026-09-11 (score 55)

First indexed and scored.

## MCP tools (11)

### `inspect_project` (~96 tokens)

分析项目目录，识别语言、入口和已有打包配置，返回推荐的跨生态交付目标。

Input parameters:

- `entrypoints` (array): 手动指定入口列表：项目内相对路径（文件须存在）或 npm start
- `language` (string): 手动指定项目语言（自动识别失败或识别错误时使用）
- `source_dir` (string, required): 项目根目录路径

### `generate_packaging_plan` (~167 tokens)

生成项目级 Forge.md 交付契约，记录目标生态、产物、决策依据和风险（计划先行，后续构建工具必须基于此契约）。

Input parameters:

- `entrypoints` (array): 手动指定入口列表：项目内相对路径（文件须存在）或 npm start
- `goals` (array, required): 目标产物列表（如 ["deb", "rpm"] 或 ["windows-msi"]）
- `language` (string): 手动指定项目语言（自动识别失败或识别错误时使用）
- `source_dir` (string, required): 项目根目录路径
- `target_environment` (string): 目标环境（如 ubuntu-22.04、windows、macos、harmonyos）

### `get_ecosystem_knowledge` (~80 tokens)

读取某个生态的知识包（产物形态、工具链、签名硬约束、上架规则、验证方法）。缺省 ecosystem 时返回全部已注册生态。

Input parameters:

- `ecosystem` (string): 生态 id（如 linux/ubuntu、mobile/harmonyos）；缺省返回全部已注册生态

### `pack_deb` (~163 tokens)

按已审查的 Forge.md 契约，在隔离 Ubuntu 容器中构建 deb 包，并在干净容器中安装和运行验证。

Input parameters:

- `output_dir` (string): 产物输出目录，默认 <source_dir>/.deliverkit/artifacts
- `package_name` (string): Debian 包名；缺省时使用项目名
- `package_version` (string): 产物版本；缺省时使用 Forge.md 契约中的项目版本（来自项目元数据，最终回退 0.1.0）
- `plan_path` (string, required): Forge.md 交付契约文件路径（构建类工具必需）
- `source_dir` (string, required): 项目根目录路径

### `pack_rpm` (~164 tokens)

按已审查的 Forge.md 契约，在隔离 Rocky Linux 容器中构建 rpm 包，并在干净容器中安装和运行验证。

Input parameters:

- `output_dir` (string): 产物输出目录，默认 <source_dir>/.deliverkit/artifacts
- `package_name` (string): RPM 包名；缺省时使用项目名
- `package_version` (string): 产物版本；缺省时使用 Forge.md 契约中的项目版本（来自项目元数据，最终回退 0.1.0）
- `plan_path` (string, required): Forge.md 交付契约文件路径（构建类工具必需）
- `source_dir` (string, required): 项目根目录路径

### `pack_appimage` (~165 tokens)

按已审查的 Forge.md 契约，在隔离 Ubuntu x86_64 容器中封装 AppImage，并以 extract-and-run 验证。

Input parameters:

- `output_dir` (string): 产物输出目录，默认 <source_dir>/.deliverkit/artifacts
- `package_name` (string): AppImage 名称；缺省时使用项目名
- `package_version` (string): 产物版本；缺省时使用 Forge.md 契约中的项目版本（来自项目元数据，最终回退 0.1.0）
- `plan_path` (string, required): Forge.md 交付契约文件路径（构建类工具必需）
- `source_dir` (string, required): 项目根目录路径

### `generate_ci_workflow` (~128 tokens)

按已审查的 Forge.md 契约生成 GitHub Actions Linux/Windows 多平台交付工作流；签名材料只通过 CI secrets 注入。

Input parameters:

- `output_path` (string): 工作流输出路径，默认 <source_dir>/.github/workflows/deliverkit.yml
- `overwrite` (boolean): 是否允许覆盖已存在的工作流文件，默认 false
- `plan_path` (string, required): Forge.md 交付契约文件路径（构建类工具必需）
- `source_dir` (string, required): 项目根目录路径

### `pack_windows_msi` (~159 tokens)

在 Windows runner 使用 WiX 生成 MSI，使用 Authenticode 签名，并以 signtool/msiexec 完成安装验证。

Input parameters:

- `output_dir` (string): 产物输出目录，默认 <source_dir>/.deliverkit/artifacts
- `package_name` (string): MSI 名称；缺省时使用项目名
- `package_version` (string): 产物版本；缺省时使用 Forge.md 契约中的项目版本（来自项目元数据，最终回退 0.1.0）
- `plan_path` (string, required): Forge.md 交付契约文件路径（构建类工具必需）
- `source_dir` (string, required): 项目根目录路径

### `pack_macos` (~194 tokens)

在 macOS runner 使用 codesign/hdiutil 或 productbuild/productsign 生成 DMG/PKG，调用 notarytool 公证，并以 spctl/stapler 验证。

Input parameters:

- `artifact` (string): 构建 DMG 或签名 PKG，默认按计划选择
- `output_dir` (string): 产物输出目录，默认 <source_dir>/.deliverkit/artifacts
- `package_name` (string): DMG/PKG 名称；缺省时使用项目名
- `package_version` (string): 产物版本；缺省时使用 Forge.md 契约中的项目版本（来自项目元数据，最终回退 0.1.0）
- `plan_path` (string, required): Forge.md 交付契约文件路径（构建类工具必需）
- `source_dir` (string, required): 项目根目录路径

### `pack_harmonyos` (~122 tokens)

在 Linux/Windows DevEco runner 使用 hvigorw 构建 HAP/APP，并用 hdc 安装验证正式签名产物。

Input parameters:

- `artifact` (string): 构建 HAP 或正式 APP，默认按计划选择
- `output_dir` (string): 产物输出目录，默认 <source_dir>/.deliverkit/artifacts
- `plan_path` (string, required): Forge.md 交付契约文件路径（构建类工具必需）
- `source_dir` (string, required): 项目根目录路径

### `generate_release_manifest` (~120 tokens)

汇总各平台结构化构建结果、SHA256、签名/安装/运行证据，生成统一 ReleaseManifest.json。

Input parameters:

- `output_path` (string): 报告输出路径，默认 <source_dir>/ReleaseManifest.json
- `plan_path` (string, required): Forge.md 交付契约文件路径（构建类工具必需）
- `results_dir` (string): 平台结果 JSON 目录，默认 <source_dir>/.deliverkit/results
- `source_dir` (string, required): 项目根目录路径

## Diagnostics

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

## Score history

- 2026-09-21: 75
- 2026-09-20: 74
- 2026-09-19: 74
- 2026-09-18: 70
- 2026-09-17: 70
- 2026-09-16: 70
- 2026-09-15: 70
- 2026-09-14: 70
- 2026-09-13: 70
- 2026-09-12: 70
- 2026-09-11: 55

## Common questions

### What is the io.github.muzimu217/DeliverKit MCP server?

io.github.muzimu217/DeliverKit is an MCP server listed in the public MCP registry as io.github.muzimu217/DeliverKit. Plan and verify multi-ecosystem packaging (Linux, Windows, macOS, HarmonyOS) for AI agents. This page covers its npm package (deliverkit-mcp).

### Is the io.github.muzimu217/DeliverKit MCP server safe to use?

io.github.muzimu217/DeliverKit scores 75 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 21 September 2026. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the io.github.muzimu217/DeliverKit MCP server expose?

io.github.muzimu217/DeliverKit exposes 11 tools: inspect_project, generate_packaging_plan, get_ecosystem_knowledge, pack_deb, pack_rpm, and 6 more. Their descriptions and schemas cost roughly 1,558 tokens of context every time the server is loaded.

### Is the io.github.muzimu217/DeliverKit MCP server still maintained?

io.github.muzimu217/DeliverKit is still listed as active in the MCP registry. We last reached this channel on 21 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

### What licence is the io.github.muzimu217/DeliverKit MCP server under?

io.github.muzimu217/DeliverKit declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.

## Links

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