Mdvp Cli MCP Server

@mdvp/cli npm v1.36.1 Source verified

Published by tixo-digital — publish provenance cryptographically ties this package to that repository. That is proof of origin, not an official vendor package.

Design linter for AI-generated frontends: deterministic rendered-DOM audits, CI gates, and MCP design-quality signals

Trust grade
B
81/100
Last scanned get badge →
Trust
B · 81/100
Adoption risk for you: the threat score, then adjusted down for blast radius, publisher verification and how much the scan could see. Deterministic; every point is auditable.
Capability
Critical
Blast radius if it went rogue — what the server’s tools could reach. Independent of trust.
Coverage
Source
How much the scan could actually inspect. Shallow coverage is stated, never hidden.
Share this Trust Score
𝕏 Share LinkedIn Reddit
B Why this grade threat 91 − adoption risk = 81/100

The grade answers one question — how safe is this server for you to adopt — so it is computed in two auditable stages. Nothing below is an opinion or an LLM's guess; every line is a real term the deterministic engine applied, and the same input always yields the same number.

1. Threat score — 100 − 9.5 = 91. What the published surface and source actually contain:

PointsWhat was foundCategory
−9.5 Untrusted input concatenated into a command sink ×2 MTC-SRC-009 injection

2. Client adoption risk — 91 − 10 = 81. Three small, subtract-only factors that reflect your risk in adopting it — a clean scan proves less on a powerful, unverified or barely-inspectable package, so the grade says so plainly:

PointsAdoption-risk factor
−10 capability blast radius (critical) — client exposure if the model is manipulated

Capability observations and info notes are shown under Findings but never scored. Open any row's finding below for the file, line and evidence behind a deduction.

Findings 9

high Shell/command execution in server code (cli.mjs)MTC-SRC-002

In the server's implementation (`cli.mjs:5`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: import { spawn } from 'child_process' import { dirname, join } from 'path' import { fileURLToPath } from 'url' import

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server cli.mjs

high Shell/command execution in server code (commands/audit-local.mjs)MTC-SRC-002

In the server's implementation (`commands/audit-local.mjs:83`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: Child } = await import("child_process") timeoutMs = normalizeLocalCrawlTimeout(timeoutMs) return await new Promise((

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server commands/audit-local.mjs

high Shell/command execution in server code (commands/doctor.mjs)MTC-SRC-002

In the server's implementation (`commands/doctor.mjs:4`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: ort { spawnSync } from 'child_process' import { VERSION } from '../lib/constants.mjs' const REQUIRED_NODE_MAJOR = 18 c

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server commands/doctor.mjs

high Shell/command execution in server code (commands/hire.mjs)MTC-SRC-002

In the server's implementation (`commands/hire.mjs:4`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: import { spawn } from 'child_process' import { existsSync, writeFileSync, readFileSync, copyFileSync, mkdirSync, unlink

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server commands/hire.mjs

high Shell/command execution in server code (commands/perceive.mjs)MTC-SRC-002

In the server's implementation (`commands/perceive.mjs:5`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: import { spawn } from 'child_process' import { existsSync, writeFileSync, mkdirSync, unlinkSync } from 'fs' import { ho

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server commands/perceive.mjs

high Shell/command execution in server code (engine/static-analyzer.mjs)MTC-SRC-002

In the server's implementation (`engine/static-analyzer.mjs:1`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: spawnSync } from 'node:child_process' import { existsSync, mkdirSync, readFileSync, statSync } from 'node:fs' import {

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server engine/static-analyzer.mjs

medium Untrusted input concatenated into a command sink (cli.mjs)MTC-SRC-009

In the server's implementation (`cli.mjs:161`): A shell/process command assembled from concatenated or interpolated values is command injection when any part is attacker-influenced — the OWASP canonical RCE flow. Verify what reaches the interpolated value. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: er"]) { try { execSync(`test -x ${p}`, { stdio: "ignore" }); chromiumPath = p; break } catch {} }

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server cli.mjs

medium Untrusted input concatenated into a command sink (commands/perceive.mjs)MTC-SRC-009

In the server's implementation (`commands/perceive.mjs:49`): A shell/process command assembled from concatenated or interpolated values is command injection when any part is attacker-influenced — the OWASP canonical RCE flow. Verify what reaches the interpolated value. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: er"]) { try { execSync(`test -x ${p}`, { stdio: "ignore" }); chromiumPath = p; break } catch {} }

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server commands/perceive.mjs

medium Unconstrained URL/host parameter "url" on "submit_for_crawl"MTC-CAP-007

Tool "submit_for_crawl" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool submit_for_crawl · inputSchema.properties.url

Tools 6

Each tool and what it can reach — statically extracted from the published source.

  • get_page_contentingests untrusted input
  • submit_for_crawlingests untrusted input
  • audit_urlno sensitive capability
  • compare_sitesno sensitive capability
  • perceive_urlno sensitive capability
  • top_sitesno sensitive capability

What this scan could not see

Versions 2

Scan history per published version. The engine is deterministic — the same version always yields the same score, so a changed score means the package itself changed.

VersionScoreFindingsEngineScanned
v1.36.1 latest B 81/100 9 1.13.0 2026-09-07
v1.36.0 B 81/100 9 1.12.1 2026-08-07

Embed this score

Show this server's live Trust Score in your README, docs or website. The badge is served straight from the registry and updates automatically after every rescan — no API key needed. It links back to this page, so anyone who sees the grade can also read the findings behind it instead of taking a number on faith.

MCP Trust Score: B · 81/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/mdvp-cli/badge.svg)](https://mcptrustchecker.com/registry/mdvp-cli)
HTML
<a href="https://mcptrustchecker.com/registry/mdvp-cli"><img src="https://mcptrustchecker.com/registry/mdvp-cli/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/mdvp-cli/badge.json via https://img.shields.io/endpoint?url=…

Verify this score yourself

The score above is reproducible: the same package version always yields the same result. Run it locally or over the free API — no account, no LLM, fully deterministic.

npx mcptrustchecker scan @mdvp/cli --online

Use the free API → How scoring works

More in Developer Tools