Clouvel MCP Server

clouvel PyPI v6.2.1

Published by whitening-sinabro — no publish provenance, so origin is unverified, but the source is public: the repository link below is self-declared yet readable, so you can inspect the code before adopting it.

Trust grade
A
93/100
Last scanned get badge →
Trust
A · 93/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
High
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
A Why this grade threat 100 − adoption risk = 93/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 − 0 = 100. What the published surface and source actually contain:

The deterministic scan raised no scored threat in the surface it inspected — the threat score stayed at 100. Capability observations and advisory notes are recorded but never lower it.

2. Client adoption risk — 100 − 7 = 93. 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
−6 capability blast radius (high) — client exposure if the model is manipulated
−1 publisher verification (public source) — no provenance, but the source is public and inspectable

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 13

high Sensitive-source and external-sink co-existMTC-FLOW-004

Tools that read sensitive data ([list_files]) and tools that can send data out ([spawn_explore, spawn_librarian]) are exposed together. An agent can move private data to the sink.

Evidence: sources [list_files] → sinks [spawn_explore, spawn_librarian]

Fix: Keep secret-reading and egress capabilities on separate, separately-approved servers.

Location: flow list_files → spawn_explore

high Tool "spawn_explore" exposes command/code executionMTC-CAP-001

Tool "spawn_explore" appears to run shell commands or evaluate code (keyword "spawn" in tool name). Arbitrary execution driven by model input is one of the most dangerous MCP capabilities; combined with any untrusted input it becomes RCE.

Fix: Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.

Location: tool spawn_explore

high Tool "spawn_librarian" exposes command/code executionMTC-CAP-001

Tool "spawn_librarian" appears to run shell commands or evaluate code (keyword "spawn" in tool name). Arbitrary execution driven by model input is one of the most dangerous MCP capabilities; combined with any untrusted input it becomes RCE.

Fix: Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.

Location: tool spawn_librarian

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

In the server's implementation (`src/clouvel/cli.py:202`): 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: check_result = subprocess.run( ["claude", "mcp", "list"], capture_output=True

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 src/clouvel/cli.py

high Shell/command execution in server code (src/clouvel/tools/architecture.py)MTC-SRC-002

In the server's implementation (`src/clouvel/tools/architecture.py:69`): 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: 색 grep_result = subprocess.run( ["grep", "-rn", f"(def|class) {name}", str(project_path / "src")],

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 src/clouvel/tools/architecture.py

high Shell/command execution in server code (src/clouvel/tools/checkpoint.py)MTC-SRC-002

In the server's implementation (`src/clouvel/tools/checkpoint.py:44`): 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: name branch = subprocess.run( ["git", "rev-parse", "--abbrev-ref", "HEAD"], capture_

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 src/clouvel/tools/checkpoint.py

high Shell/command execution in server code (src/clouvel/tools/core.py)MTC-SRC-002

In the server's implementation (`src/clouvel/tools/core.py:266`): 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: new) result = subprocess.run( ["git", "diff", "--name-only", "--diff-filter=A", "HEAD"],

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 src/clouvel/tools/core.py

high Shell/command execution in server code (src/clouvel/tools/install.py)MTC-SRC-002

In the server's implementation (`src/clouvel/tools/install.py:34`): 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: try: result = subprocess.run( ["claude", "--version"], capture_output=True,

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 src/clouvel/tools/install.py

high Shell/command execution in server code (src/clouvel/tools/ship_pro.py)MTC-SRC-002

In the server's implementation (`src/clouvel/tools/ship_pro.py:242`): 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: ue 필요 result = subprocess.run( command, cwd=str(project_path), shell=Tru

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 src/clouvel/tools/ship_pro.py

medium Hardcoded egress to an external endpoint (src/clouvel/version_check.py)MTC-SRC-003

In the server's implementation (`src/clouvel/version_check.py:37`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: sts response = requests.get( "https://pypi.org/pypi/clouvel/json", timeout=5

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 src/clouvel/version_check.py

low Mutating tool "spawn_explore" declares no destructiveHintMTC-CAP-005

Tool "spawn_explore" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.

Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.

Location: tool spawn_explore

low Mutating tool "spawn_librarian" declares no destructiveHintMTC-CAP-005

Tool "spawn_librarian" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.

Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.

Location: tool spawn_librarian

low Unconstrained path parameter "path" on "list_files"MTC-CAP-008

Tool "list_files" takes a path parameter "path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool list_files · inputSchema.properties.path

Tools 88

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

  • list_filesreads sensitive data
  • spawn_exploreruns code / shell
  • spawn_librarianruns code / shell
  • activate_licenseno sensitive capability
  • add_persona_overrideno sensitive capability
  • add_ruleno sensitive capability
  • analyze_docsno sensitive capability
  • arch_checkno sensitive capability
  • archive_projectno sensitive capability
  • audit_rulesno sensitive capability
Show 78 more tools ↓
  • auto_remindno sensitive capability
  • can_codeno sensitive capability
  • check_duplicatesno sensitive capability
  • check_importsno sensitive capability
  • check_syncno sensitive capability
  • configure_meetingno sensitive capability
  • context_loadno sensitive capability
  • context_saveno sensitive capability
  • debug_runtimeno sensitive capability
  • decide_winnerno sensitive capability
  • disable_ab_testingno sensitive capability
  • drift_checkno sensitive capability
  • enable_ab_testingno sensitive capability
  • error_checkno sensitive capability
  • error_learnno sensitive capability
  • error_recordno sensitive capability
  • export_training_datano sensitive capability
  • full_shipno sensitive capability
  • gateno sensitive capability
  • get_ab_reportno sensitive capability
  • get_analyticsno sensitive capability
  • get_contextno sensitive capability
  • get_meeting_configno sensitive capability
  • get_meeting_statsno sensitive capability
  • get_monthly_reportno sensitive capability
  • get_prd_guideno sensitive capability
  • get_prd_templateno sensitive capability
  • get_ruleno sensitive capability
  • get_setup_guideno sensitive capability
  • get_variant_performanceno sensitive capability
  • get_verify_checklistno sensitive capability
  • handoffno sensitive capability
  • hook_designno sensitive capability
  • hook_verifyno sensitive capability
  • init_clouvelno sensitive capability
  • init_docsno sensitive capability
  • init_knowledgeno sensitive capability
  • init_planningno sensitive capability
  • init_rulesno sensitive capability
  • license_statusno sensitive capability
  • list_locked_decisionsno sensitive capability
  • list_managersno sensitive capability
  • list_projectsno sensitive capability
  • list_templatesno sensitive capability
  • list_variantsno sensitive capability
  • managerno sensitive capability
  • meetingno sensitive capability
  • meeting_topicsno sensitive capability
  • memory_archiveno sensitive capability
  • memory_global_searchno sensitive capability
  • memory_listno sensitive capability
  • memory_promoteno sensitive capability
  • memory_reportno sensitive capability
  • memory_searchno sensitive capability
  • memory_statusno sensitive capability
  • pattern_watchno sensitive capability
  • planno sensitive capability
  • quick_perspectivesno sensitive capability
  • quick_shipno sensitive capability
  • rate_meetingno sensitive capability
  • rebuild_indexno sensitive capability
  • record_decisionno sensitive capability
  • record_fileno sensitive capability
  • record_locationno sensitive capability
  • refresh_goalsno sensitive capability
  • reset_meeting_configno sensitive capability
  • save_findingno sensitive capability
  • save_prdno sensitive capability
  • scan_docsno sensitive capability
  • search_knowledgeno sensitive capability
  • set_project_domainno sensitive capability
  • setup_clino sensitive capability
  • shipno sensitive capability
  • startno sensitive capability
  • unlock_decisionno sensitive capability
  • update_progressno sensitive capability
  • verifyno sensitive capability
  • write_prd_sectionno sensitive capability

Toxic flows 1

Cross-tool combinations that form a data-exfiltration primitive (untrusted input → sensitive source → external sink).

What this scan could not see

Versions 1

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
v6.2.1 latest A 93/100 13 1.9.0 2026-07-23

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: A · 93/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/clouvel/badge.svg)](https://mcptrustchecker.com/registry/clouvel)
HTML
<a href="https://mcptrustchecker.com/registry/clouvel"><img src="https://mcptrustchecker.com/registry/clouvel/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/clouvel/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 clouvel --online --registry pypi

Use the free API → How scoring works

More in Developer Tools