Cicy Desktop MCP Server

cicy-desktop npm v2.1.342

Published by an unidentified publisher — no publish provenance and no public repository, so the publisher could not be verified and the source cannot be independently located.

CiCy - AI-powered operating system browser

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
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
B Why this grade threat 89 − 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 − 11 = 89. What the published surface and source actually contain:

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

2. Client adoption risk — 89 − 8 = 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
−6 capability blast radius (high) — client exposure if the model is manipulated
−2 publisher verification (unlinked) — no provenance/repo link, but the shipped source was fully read

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 25

high Reads a sensitive credential path or dumps the environment (src/sidecar/colima-docker.js)MTC-SRC-006

In the server's implementation (`src/sidecar/colima-docker.js:560`): Reading private keys / cloud credentials, or serializing the whole environment, is a sensitive-data source that becomes exfiltration when combined with any egress. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: .ssh; { [ -f $HOME/.ssh/id_ed25519 ] || [ -f $HOME/.ssh/id_rsa ]; } || ssh-keygen -t ed25519 -N "" -f $HOME/.ssh/id_ed25

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/sidecar/colima-docker.js

high Dynamic code execution in server code (src/backends/homepage-react/assets/index-OG6JB73F.js)MTC-SRC-001

In the server's implementation (`src/backends/homepage-react/assets/index-OG6JB73F.js:399`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: le;if(L.js)return await new Function(`return (async()=>{${L.js}})()`)();if(!L.tool)return{error:"no tool"};const W=await

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/backends/homepage-react/assets/index-OG6JB73F.js

high Dynamic code execution in server code (workers/render/src/App.jsx)MTC-SRC-001

In the server's implementation (`workers/render/src/App.jsx:1446`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: nc return await new Function(`return (async()=>{${f.js}})()`)(); } if (!f.tool) return { error: "no

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 workers/render/src/App.jsx

high Shell/command execution in server code (src/app-updater.js)MTC-SRC-002

In the server's implementation (`src/app-updater.js:402`): 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: st { spawn } = require("child_process"); const exe = process.execPath; const dir = path.join(process.env.LOCALAPPDAT

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/app-updater.js

high Shell/command execution in server code (src/backends/ipc.js)MTC-SRC-002

In the server's implementation (`src/backends/ipc.js:118`): 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: { execFile } = require("child_process"); const port = 8008; // Kill by PID from lsof (works on same-user pr

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/backends/ipc.js

high Shell/command execution in server code (src/backends/local-teams.js)MTC-SRC-002

In the server's implementation (`src/backends/local-teams.js:23`): 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: { execFile } = require("child_process"); const { spawn } = require("child_process"); const { BrowserWindow, nativeImage

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/backends/local-teams.js

high Shell/command execution in server code (src/backends/open-external.js)MTC-SRC-002

In the server's implementation (`src/backends/open-external.js:14`): 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: st { spawn } = require("child_process"); const log = require("electron-log"); function trySpawn(cmd, args) { try {

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/backends/open-external.js

high Shell/command execution in server code (src/backends/sidecar-ipc.js)MTC-SRC-002

In the server's implementation (`src/backends/sidecar-ipc.js:200`): 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 { require("child_process").execFile("shutdown", ["/r", "/t", String(delaySec), "/c", why || "CiCy Desktop:

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/backends/sidecar-ipc.js

high Shell/command execution in server code (src/backends/window-manager.js)MTC-SRC-002

In the server's implementation (`src/backends/window-manager.js:13`): 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: { execFile } = require("child_process"); const { promisify } = require("util"); const execFileAsync = promisify(execFile

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/backends/window-manager.js

high Shell/command execution in server code (src/chrome/chrome-launcher.js)MTC-SRC-002

In the server's implementation (`src/chrome/chrome-launcher.js:7`): 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: ecFileSync } = require("child_process"); const { isPortOpen } = require("../utils/process-utils"); const { waitForDebugg

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/chrome/chrome-launcher.js

medium Hardcoded egress to an external endpoint (src/backends/homepage-react/assets/index-OG6JB73F.js)MTC-SRC-003

In the server's implementation (`src/backends/homepage-react/assets/index-OG6JB73F.js:405`): 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: ise(function(res){var q=https.request("https://ws.cicy-ai.com/api/enroll",{method:"POST",headers:{Authorization:"Bearer

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/backends/homepage-react/assets/index-OG6JB73F.js

medium Hardcoded egress to an external endpoint (workers/render/src/App.jsx)MTC-SRC-003

In the server's implementation (`workers/render/src/App.jsx:1696`): 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: ise(function(res){var q=https.request("https://ws.cicy-ai.com/api/enroll",{method:"POST",headers:{Authorization:"Bearer

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 workers/render/src/App.jsx

medium Hardcoded egress to an external endpoint (workers/render/worker.js)MTC-SRC-003

In the server's implementation (`workers/render/worker.js:215`): 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: { const r = await fetch("https://ws.cicy-ai.com/api/instances", { headers: { authorization: "Bearer " + tok } });

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 workers/render/worker.js

medium Untrusted input concatenated into a command sink (src/main-old.js)MTC-SRC-009

In the server's implementation (`src/main-old.js:644`): 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: "python-exec.py"); exec(`python3 ${pythonPath} '${code.replace(/'/g, "'\\''")}'`, (error, stdout, stderr) => {

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/main-old.js

medium Untrusted input concatenated into a command sink (src/main.js)MTC-SRC-009

In the server's implementation (`src/main.js:2159`): 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: try { execSync(`taskkill /F /IM ${t}.exe`, { stdio: "ignore", windowsHide: true }); } 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 src/main.js

medium Untrusted input concatenated into a command sink (src/tools/system-tools.js)MTC-SRC-009

In the server's implementation (`src/tools/system-tools.js:48`): 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: processName = execSync(`ps -p ${pid} -o comm=`, { encoding: "utf8" }).trim(); } catch (e) {

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/tools/system-tools.js

low Hardcoded egress to an external endpoint in packaging/dev tooling (scripts/r2.mjs)MTC-SRC-003

In a packaging/dev/install script (shipped, but not the server runtime) (`scripts/r2.mjs:70`): 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: (); const res = await fetch(`https://api.cloudflare.com/client/v4/accounts/${ACCOUNT}${path}`, { headers: { Author

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 scripts/r2.mjs

low Dynamic code execution in packaging/dev tooling (test/homepage-remote.test.js)MTC-SRC-001

In a packaging/dev/install script (shipped, but not the server runtime) (`test/homepage-remote.test.js:46`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: rts: {} }; const fn = new Function( "require", "path", "module", "__dirname", body + "\nmodule.exp

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 test/homepage-remote.test.js

low Dynamic code execution in packaging/dev tooling (test/telegram-identity.test.js)MTC-SRC-001

In a packaging/dev/install script (shipped, but not the server runtime) (`test/telegram-identity.test.js:22`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: ); assert.equal(await vm.runInContext(TELEGRAM_IDENTITY_SCRIPT, ctx), null); }); test("identity script never leaks au

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 test/telegram-identity.test.js

low Shell/command execution in packaging/dev tooling (scripts/build-homepage.cjs)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`scripts/build-homepage.cjs:17`): 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: { execSync } = require("child_process"); const fs = require("fs"); const path = require("path"); const ROOT = path.join

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 scripts/build-homepage.cjs

low Shell/command execution in packaging/dev tooling (scripts/r2.mjs)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`scripts/r2.mjs:25`): 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 { pathToFileURL } from "node:url"; import { existsSync, statSync } from "

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 scripts/r2.mjs

low Shell/command execution in packaging/dev tooling (scripts/sync-runtime-deps.cjs)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`scripts/sync-runtime-deps.cjs:14`): 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: { execSync } = require("child_process"); const fs = require("fs"); const path = require("path"); const REGISTRY = proce

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 scripts/sync-runtime-deps.cjs

low Dynamic module load from a non-literal in packaging/dev tooling (test/chrome-launcher.test.js)MTC-SRC-005

In a packaging/dev/install script (shipped, but not the server runtime) (`test/chrome-launcher.test.js:57`): Loading a module chosen at runtime (from a variable) can pull in and run attacker-influenced code paths. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: romeAppToForeground } = require(launcherPath); childProcess.spawn = originalSpawn; bringChromeAppToForeground("/App

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 test/chrome-launcher.test.js

low Dynamic module load from a non-literal in packaging/dev tooling (test/desktop-snapshot-tools.test.js)MTC-SRC-005

In a packaging/dev/install script (shipped, but not the server runtime) (`test/desktop-snapshot-tools.test.js:48`): Loading a module chosen at runtime (from a variable) can pull in and run attacker-influenced code paths. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: }); let handler; require(toolsPath)((name, _description, _schema, registeredHandler) => { if (name === "deskt

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 test/desktop-snapshot-tools.test.js

low Dynamic module load from a non-literal in packaging/dev tooling (test/electron-inject-tools.test.js)MTC-SRC-005

In a packaging/dev/install script (shipped, but not the server runtime) (`test/electron-inject-tools.test.js:16`): Loading a module chosen at runtime (from a variable) can pull in and run attacker-influenced code paths. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: Path]; let handler; require(modulePath)((name, _description, _schema, candidate) => { if (name === "electron_inj

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 test/electron-inject-tools.test.js

What this scan could not see

Versions 10

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
v2.1.342 latest B 81/100 25 1.13.0 2026-09-07
v2.1.340 B 81/100 22 1.13.0 2026-09-04
v2.1.328 B 81/100 19 1.13.0 2026-09-01
v2.1.325 B 81/100 19 1.13.0 2026-08-31
v2.1.319 B 81/100 18 1.13.0 2026-08-30
Show 5 more versions ↓
v2.1.318 B 81/100 18 1.13.0 2026-08-29
v2.1.301 B 81/100 18 1.13.0 2026-08-28
v2.1.290 B 81/100 18 1.13.0 2026-08-27
v2.1.278 B 81/100 16 1.13.0 2026-08-25
v2.1.276 B 81/100 16 1.12.1 2026-08-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: B · 81/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/cicy-desktop/badge.svg)](https://mcptrustchecker.com/registry/cicy-desktop)
HTML
<a href="https://mcptrustchecker.com/registry/cicy-desktop"><img src="https://mcptrustchecker.com/registry/cicy-desktop/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/cicy-desktop/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 cicy-desktop --online

Use the free API → How scoring works

More in Developer Tools