# com.hushvert/mcp (npm · @hushvert/mcp)

File conversion for AI agents: office docs, PDF to Word, video, and LLM-ready markdown via API.

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

## Components

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

## Channel facts

- Registry: `npm`
- Package: `@hushvert/mcp`
- Version: `0.1.0`
- 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**: 86/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (94 of 98), 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 98), 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 17 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 80/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 499 tokens (~124/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 com-hushvert-mcp -- npx -y @hushvert/mcp
```

### Codex

```bash
codex mcp add com-hushvert-mcp -- npx -y @hushvert/mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add com-hushvert-mcp --command npx --arg -y --arg @hushvert/mcp
```

### Hermes

```yaml
mcp_servers:
  com-hushvert-mcp:
    command: "npx"
    args: ["-y", "@hushvert/mcp"]
```

### Other

```json
{
  "mcpServers": {
    "com-hushvert-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@hushvert/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 70, +1)

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

### 2026-08-02 (score 69, +28)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security] Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- [functional regression] Capabilities: pass → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] License: unverified → pass
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional] First check of Schema quality: unverified
- [functional] Licence: MIT

### 2026-08-01 (score 41, +20)

- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] MCP protocol: unverified → pass

### 2026-07-31 (score 21, −25)

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

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

First indexed and scored.

## MCP tools (4)

### `convert_file` (~294 tokens)

Convert a file with hushvert

Convert a local file to another format using the hushvert hosted API. Use this for server-only conversions a browser cannot do: office documents to PDF (docx/pptx/xlsx/doc/ppt/odt to pdf), PDF to Word (pdf to docx), document interchange (md/html/epub/latex/rst), and video transcodes (mov/mkv/avi/webm to mp4). Reads the input file, runs the conversion, and writes the result locally. Returns the output path. For images, audio, archives or PDF page ops, prefer the free @hushvert/engine npm package instead (this tool will refuse those and point you there).

Input parameters:

- `from` (string): Source format id. Inferred from the file extension when omitted.
- `idempotency_key` (string): Optional key to make a retried conversion safe (returns the same job, charges once).
- `input_path` (string, required): Path to the source file (absolute, or relative to the working directory).
- `output_path` (string): Where to write the result. Defaults to the input path with the target extension. Required to overwrite an existing file.
- `to` (string, required): Target format id, e.g. "pdf", "docx", "mp4".
- `wait_seconds` (integer): Max seconds to wait for the conversion before returning a jobId to poll. Default 120.

### `convert_poll` (~101 tokens)

Finish a long hushvert conversion

Resume a conversion that was still running when convert_file returned (typically a large video). Poll the job by id and, when done, write the result to output_path.

Input parameters:

- `jobId` (string, required): The job id returned by convert_file.
- `output_path` (string): Where to write the result once done. If omitted, returns a short-lived download URL instead.
- `wait_seconds` (integer): Max seconds to wait this call. Default 120.

### `list_formats` (~58 tokens)

List hushvert server conversions

List the conversions the hushvert hosted API supports (the server-only pairs). Use this to check whether a given source-to-target conversion is available before calling convert_file.

Input parameters:

- `from` (string): Optional: filter to conversions from this source format id.

### `check_usage` (~46 tokens)

Check hushvert usage and balance

Report this account hushvert usage: free monthly conversions remaining, credit balance, and the current billing window. Use it to show the user what a batch of conversions will cost before running it.

## Diagnostics

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

## Score history

- 2026-08-03: 70
- 2026-08-02: 69
- 2026-08-01: 41
- 2026-07-31: 21
- 2026-07-30: 46
- 2026-07-28: 46
- 2026-07-27: 46

## Links

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