# io.github.Cubiczan/codesentinel (npm · @cubiczan/codesentinel-mcp)

AI codebase health analysis: dead code, circular deps, coupling, architectural drift.

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

## Components

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

## Channel facts

- Registry: `npm`
- Package: `@cubiczan/codesentinel-mcp`
- Version: `1.0.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**: 70/100
  - No malware found by supply-chain analysis.
  - CVE check failed: a known high-severity CVE affects adm-zip 0.5.18, a direct dependency. A fixed version is available.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (241 of 243), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 6/100
  - Repository check failed: no source repository is declared.
  - Provenance check failed: no build-provenance attestation is published.
  - License check failed: no license is declared.
  - Actively maintained (last published 38 days ago).
  - Security-disclosure policy not yet verified: we couldn't inspect the source repository.
- **Schema Quality & AI Usability**: 66/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 400 tokens (~66/item across 6 items; 6 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**: 97/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 91% 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 cubiczan-codesentinel -- npx -y @cubiczan/codesentinel-mcp
```

### Codex

```bash
codex mcp add cubiczan-codesentinel -- npx -y @cubiczan/codesentinel-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add cubiczan-codesentinel --command npx --arg -y --arg @cubiczan/codesentinel-mcp
```

### Hermes

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

### Other

```json
{
  "mcpServers": {
    "cubiczan-codesentinel": {
      "command": "npx",
      "args": [
        "-y",
        "@cubiczan/codesentinel-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 54, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-08-02 (score 50, +19)

- [security regression] Known CVEs: unverified → fail
- [security regression] Provenance: unverified → fail
- [security improvement] CVE-2026-14257 no longer affects this package
- [security improvement] Install scripts: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional regression] License: unverified → fail
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Schema quality: unverified → good

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

- [functional improvement] Tool coverage: unverified → 100

### 2026-07-31 (score 15, −7)

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

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

- [security regression] Known CVEs: fail → unverified
- [security regression] Malware scan: pass → unverified
- [security regression] Provenance: fail → unverified
- [security regression] Install scripts: pass → unverified
- [security improvement] CVE-2026-14257 no longer affects this package
- [security improvement] CVE-2026-39244 no longer affects this package
- [functional regression] License: fail → unverified
- [functional regression] Dependency health: partial → unverified
- [functional regression] Maintenance: pass → unverified

### 2026-07-28 (score 52, +34)

- [security regression] CVE-2026-39244 affects this package: high
- [security regression] CVE-2026-14257 affects this package: high
- [security regression] Known CVEs: unverified → fail
- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [functional regression] License: unverified → fail
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Schema quality: unverified
- [functional] First check of Schema quality: pass
- [functional] First check of Tool coverage: 91
- [functional] First check of Schema quality: fail

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

First indexed and scored.

## MCP tools (6)

### `analyze_dead_code` (~75 tokens)

Analyze a codebase for dead code — functions, classes, and modules that are defined but never referenced. Returns findings with file paths, line numbers, severity, and fix suggestions.

Input parameters:

- `include_suggestions` (boolean): Whether to include fix suggestions
- `repo_path` (string): Path or URL to the repository to analyze

### `detect_circular_deps` (~45 tokens)

Detect circular dependencies between modules using DFS-based cycle detection. Returns cycles with involved files and impact assessment.

Input parameters:

- `repo_path` (string): Path or URL to the repository

### `analyze_coupling` (~65 tokens)

Analyze coupling metrics across the codebase. Identifies modules with high fan-out (too many dependencies) and tightly coupled clusters.

Input parameters:

- `fan_out_threshold` (number): Fan-out threshold for flagging modules
- `repo_path` (string): Path or URL to the repository

### `detect_architectural_drift` (~80 tokens)

Detect architectural drift — violations of intended layer boundaries (e.g., UI importing from data layer, reverse dependencies).

Input parameters:

- `layers_config` (string): JSON string defining layer patterns, e.g. {"ui": ["src/components/"], "data": ["src/db/"]}
- `repo_path` (string): Path or URL to the repository

### `full_health_scan` (~58 tokens)

Run a complete codebase health scan: dead code, circular dependencies, coupling metrics, and architectural drift. Returns an overall health score (0-100) and prioritized findings.

Input parameters:

- `repo_path` (string): Path or URL to the repository

### `explain_finding` (~77 tokens)

Get a detailed explanation of a specific code health finding, including why it matters, potential risks, and detailed remediation steps.

Input parameters:

- `codebase_context` (string): Additional context about the codebase (language, framework, etc.)
- `finding_description` (string, required): Description of the specific finding to explain
- `finding_type` (string, required)

## Diagnostics

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

## Score history

- 2026-08-03: 54
- 2026-08-02: 50
- 2026-08-01: 31
- 2026-07-31: 15
- 2026-07-30: 22
- 2026-07-29: 52
- 2026-07-28: 52
- 2026-07-27: 18

## Links

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