# io.github.vola-trebla/env-secret-exposure-analyzer-mcp (npm · env-secret-exposure-analyzer-mcp)

Scans projects for secret exposure: leaked API keys, unprotected .env files, and secrets in logs.

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

## Components

- npm · `env-secret-exposure-analyzer-mcp`: 66/100 (this document), [markdown](https://verifymcp.io/servers/vola-trebla-env-secret-exposure-analyzer-mcp/env-secret-exposure-analyzer-mcp.md), [page](https://verifymcp.io/servers/vola-trebla-env-secret-exposure-analyzer-mcp/env-secret-exposure-analyzer-mcp)

## Channel facts

- Registry: `npm`
- Package: `env-secret-exposure-analyzer-mcp`
- Version: `0.2.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 74 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 547 tokens (~109/item across 5 items; 5 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 vola-trebla-env-secret-exposure-analyzer-mcp -- npx -y env-secret-exposure-analyzer-mcp
```

### Codex

```bash
codex mcp add vola-trebla-env-secret-exposure-analyzer-mcp -- npx -y env-secret-exposure-analyzer-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "vola-trebla-env-secret-exposure-analyzer-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "env-secret-exposure-analyzer-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add vola-trebla-env-secret-exposure-analyzer-mcp --command npx --arg -y --arg env-secret-exposure-analyzer-mcp
```

### Hermes

```yaml
mcp_servers:
  vola-trebla-env-secret-exposure-analyzer-mcp:
    command: "npx"
    args: ["-y", "env-secret-exposure-analyzer-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "vola-trebla-env-secret-exposure-analyzer-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "env-secret-exposure-analyzer-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 66, +45)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] MCP protocol: unverified → pass
- [functional] Licence: MIT

### 2026-07-31 (score 21, −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 28, +4)

- [security regression] Malware scan: pass → unverified
- [functional regression] Security disclosure: unverified → fail
- [functional improvement] Tool coverage: unverified → 100

### 2026-07-28 (score 24, −22)

- [functional regression] Tool coverage: 100 → unverified
- [functional regression] Security disclosure: fail → unverified
- [functional] First check of Schema quality: unverified

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

First indexed and scored.

## MCP tools (5)

### `scan_for_secrets` (~115 tokens)

Scan a project directory for hardcoded secrets, API keys, tokens, and passwords. Detects patterns like AWS keys, GitHub tokens, Stripe keys, private keys, and generic high-entropy strings. Returns file path, line number, severity, and a masked preview.

Input parameters:

- `extensions` (array): File extensions to scan, e.g. [".ts",".js",".env"]. Defaults to common source files.
- `projectPath` (string, required): Absolute path to the project root to scan, e.g. /project

### `check_gitignore_coverage` (~63 tokens)

Check whether sensitive files (.env, .env.local, secrets.json, etc.) are properly covered by .gitignore rules. Flags files that contain secrets but could be accidentally committed.

Input parameters:

- `projectPath` (string, required): Absolute path to the project root to check

### `scan_for_log_leaks` (~70 tokens)

Scan source files for console.log / logger calls that may print environment variables or secrets at runtime. Catches patterns like console.log(process.env.SECRET) or logger.info({ apiKey }) before they reach production logs.

Input parameters:

- `projectPath` (string, required): Absolute path to the project root to scan

### `scan_ci_workflows` (~141 tokens)

Scans GitHub Actions (.github/workflows/*.yml), CircleCI (.circleci/config.yml), and GitLab CI (.gitlab-ci.yml) workflow files for dangerous secret interpolation patterns. Detects ${{ secrets.* }} and ${{ github.token }} used directly in run: steps (log_leak risk — GitHub Actions logs the expanded plaintext) and ${{ github.event.pull_request.* }} / issue / commit content interpolated in shell commands (injection risk — attacker-controlled input). Returns file, job, step, pattern_found, risk, and recommendation.

Input parameters:

- `repo_path` (string, required): Absolute path to the repository root to scan

### `scan_git_history` (~158 tokens)

Scan the git commit history of a repository for secrets that were ever committed, even if later deleted. Detects hardcoded API keys, tokens, passwords, and other credentials added in diff hunks across recent commits. Returns each finding with its commit hash, file, line, severity, a masked preview, entropy score, whether the secret is still present in the working tree, and whether rotation is required. Respects .gitleaksignore.

Input parameters:

- `last_n_commits` (integer): Maximum number of recent commits to scan (default: 50)
- `repo_path` (string, required): Absolute path to the git repository root to scan
- `since_days` (integer): Only scan commits from the last N days (default: 30)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/vola-trebla-env-secret-exposure-analyzer-mcp/env-secret-exposure-analyzer-mcp#diagnostics

## Score history

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

## Links

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