# io.github.mdfifty50-boop/qc-validator (npm · qc-validator-mcp)

Output quality control and validation for AI agents

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

## Components

- npm · `qc-validator-mcp`: 59/100 (this document), [markdown](https://verifymcp.io/servers/mdfifty50-boop-qc-validator/qc-validator-mcp.md), [page](https://verifymcp.io/servers/mdfifty50-boop-qc-validator/qc-validator-mcp)

## Channel facts

- Registry: `npm`
- Package: `qc-validator-mcp`
- Version: `0.1.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 (132 of 136), 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 (132 of 136), 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 100 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 42/100
  - 0% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 423 tokens (~60/item across 7 items; 6 tools + 1 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 mdfifty50-boop-qc-validator -- npx -y qc-validator-mcp
```

### Codex

```bash
codex mcp add mdfifty50-boop-qc-validator -- npx -y qc-validator-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add mdfifty50-boop-qc-validator --command npx --arg -y --arg qc-validator-mcp
```

### Hermes

```yaml
mcp_servers:
  mdfifty50-boop-qc-validator:
    command: "npx"
    args: ["-y", "qc-validator-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "mdfifty50-boop-qc-validator": {
      "command": "npx",
      "args": [
        "-y",
        "qc-validator-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 59, +35)

- [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] Schema quality: unverified → good
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional] Licence: MIT

### 2026-08-01 (score 24, +5)

- [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 19, −25)

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

### 2026-07-28 (score 44, +20)

- [functional improvement] Schema quality: unverified → 0
- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Tool coverage: 100
- [functional] First check of Schema quality: unverified
- [functional] First check of Schema quality: pass
- [functional] First check of Schema quality: fail

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

First indexed and scored.

## MCP tools (6)

### `validate_output` (~74 tokens)

Score agent output quality against configurable criteria. Checks length, required keywords, forbidden patterns, claim density, and task relevance.

Input parameters:

- `criteria` (object, required): Quality criteria to check against
- `output` (string, required): The agent output text to validate
- `task_description` (string, required): Description of what the agent was asked to do

### `check_hallucination_risk` (~101 tokens)

Estimate hallucination likelihood in agent output. If source text is provided, checks grounding. Otherwise flags outputs with high counts of specific numbers, dates, and URLs.

Input parameters:

- `claim_count` (number): Threshold for number of specific claims before flagging as high risk (default 5)
- `output` (string, required): The agent output text to analyze
- `source_text` (string): Original source material the output should be grounded in (optional)

### `check_scope_compliance` (~60 tokens)

Validate that agent output stays within a defined scope contract. Checks allowed/forbidden topics, word limits, and required sections.

Input parameters:

- `output` (string, required): The agent output text to check
- `scope` (object, required): Scope contract to validate against

### `log_validation` (~101 tokens)

Store a validation result for trending and failure pattern analysis. Accumulates per-agent statistics over time.

Input parameters:

- `agent_id` (string, required): Unique identifier for the agent whose output was validated
- `issues_count` (integer, required): Number of issues found
- `output_hash` (string, required): Hash or identifier for the specific output that was validated
- `pass` (boolean, required): Whether the output passed validation
- `score` (number, required): Quality score from 0-100

### `get_failure_patterns` (~47 tokens)

Analyze common failure modes for a specific agent. Returns pass rate, average score, most frequent issue types, and quality trend direction.

Input parameters:

- `agent_id` (string, required): Agent identifier to analyze

### `generate_quality_report` (~36 tokens)

Generate a quality dashboard for all validated agents. Shows per-agent summaries, overall pass rate, worst/best performers, and actionable recommendations.

## Diagnostics

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

## Score history

- 2026-08-03: 59
- 2026-08-02: 59
- 2026-08-01: 24
- 2026-07-31: 19
- 2026-07-30: 44
- 2026-07-28: 44
- 2026-07-27: 24

## Links

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