# io.github.kota1026/quantumguard-mcp (npm · quantumguard-mcp)

Post-quantum cryptography security scanner. Detect ECDSA/RSA vulnerabilities, NIST compliance.

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

## Components

- npm · `quantumguard-mcp`: 64/100 (this document), [markdown](https://verifymcp.io/servers/kota1026-quantumguard-mcp/quantumguard-mcp.md), [page](https://verifymcp.io/servers/kota1026-quantumguard-mcp/quantumguard-mcp)

## Channel facts

- Registry: `npm`
- Package: `quantumguard-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-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 128 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 532 tokens (~59/item across 9 items; 9 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 kota1026-quantumguard-mcp -- npx -y quantumguard-mcp
```

### Codex

```bash
codex mcp add kota1026-quantumguard-mcp -- npx -y quantumguard-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add kota1026-quantumguard-mcp --command npx --arg -y --arg quantumguard-mcp
```

### Hermes

```yaml
mcp_servers:
  kota1026-quantumguard-mcp:
    command: "npx"
    args: ["-y", "quantumguard-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "kota1026-quantumguard-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "quantumguard-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-02 (score 64, +30)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional] Licence: MIT

### 2026-08-01 (score 34, +13)

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

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

- [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 (9)

### `pqc_scan_file` (~48 tokens)

Scan a single file for quantum-vulnerable cryptographic patterns (ECDSA, RSA, weak hashes, etc.)

Input parameters:

- `file_path` (string, required): Absolute path to the file to scan

### `pqc_scan_directory` (~54 tokens)

Recursively scan a directory for quantum-vulnerable cryptographic patterns across all source files

Input parameters:

- `directory_path` (string, required): Absolute path to the directory to scan
- `recursive` (boolean): Scan subdirectories recursively

### `pqc_migration_guide` (~72 tokens)

Get migration code templates for converting pre-quantum crypto to post-quantum (ECDSA→Dilithium, RSA→ML-KEM, SHA-256→SHA3)

Input parameters:

- `language` (string): Target programming language
- `migration_type` (string, required): Type of cryptographic migration

### `pqc_key_size_comparison` (~36 tokens)

Compare key and signature sizes between pre-quantum and post-quantum algorithms to plan storage/bandwidth impact

### `pqc_compliance_check` (~60 tokens)

Check a project directory for NIST post-quantum cryptography compliance (FIPS 202/203/204/205, CNSA 2.0)

Input parameters:

- `project_path` (string, required): Absolute path to the project directory to check

### `pqc_nist_standards_reference` (~45 tokens)

Get a quick reference of NIST post-quantum cryptography standards (FIPS 203, 204, 205) with parameters and recommendations

### `pqc_analyze_signature` (~51 tokens)

Analyze a hex-encoded signature or key to identify the algorithm and check quantum safety

Input parameters:

- `hex_data` (string, required): Hex-encoded signature or public key (with or without 0x prefix)

### `pqc_algorithm_comparison` (~98 tokens)

Compare pre-quantum and post-quantum signature algorithms side-by-side (performance, size, security)

Input parameters:

- `algorithms` (array): Algorithm IDs to compare. Available: ecdsa-secp256k1, ed25519, rsa-2048, ml-dsa-44, ml-dsa-65, ml-dsa-87, slh-dsa-128s, slh-dsa-128f

### `pqc_recommend_algorithm` (~68 tokens)

Get algorithm recommendations based on your use case, performance requirements, and target environment

Input parameters:

- `priority` (string): What to optimize for
- `target_environment` (string): Where the crypto operations will run
- `use_case` (string, required): Primary use case for the cryptographic operation

## Diagnostics

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

## Score history

- 2026-08-03: 64
- 2026-08-02: 64
- 2026-08-01: 34
- 2026-07-31: 21
- 2026-07-30: 24
- 2026-07-28: 46
- 2026-07-27: 46

## Links

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