Desktop Commander (developkiko) MCP Server

@developkiko/desktop-commander npm v1.2.8

Published by @developkiko — 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.

MCP server for terminal operations and file editing (fork by Kiko)

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

PointsWhat was foundCategory
−11 Untrusted input concatenated into a command sink ×3 MTC-SRC-009 injection
−1.2 Package runs install-time scripts MTC-SUP-010 supply-chain

2. Client adoption risk — 88 − 11 = 77. 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
−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 23

high Shell/command execution in server code (dist/remote-device/desktop-commander-integration.js)MTC-SRC-002

In the server's implementation (`dist/remote-device/desktop-commander-integration.js: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: import { spawn } from 'child_process'; import path from 'path'; import fs from 'fs/promises'; import { Client } 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 dist/remote-device/desktop-commander-integration.js

high Shell/command execution in server code (dist/remote-device/remote-channel.js)MTC-SRC-002

In the server's implementation (`dist/remote-device/remote-channel.js:443`): 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: nSync } = await import('child_process'); const { fileURLToPath } = await import('url'); const pa

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 dist/remote-device/remote-channel.js

high Shell/command execution in server code (dist/search-manager.js)MTC-SRC-002

In the server's implementation (`dist/search-manager.js: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: import { spawn } from 'child_process'; import path from 'path'; import fs from 'fs/promises'; import { validatePath } f

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 dist/search-manager.js

high Shell/command execution in server code (dist/setup-claude-server.js)MTC-SRC-002

In the server's implementation (`dist/setup-claude-server.js:8`): 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 { exec } from "node:child_process"; import { version as nodeVersion } from 'process'; import * as https from 'http

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 dist/setup-claude-server.js

high Shell/command execution in server code (dist/terminal-manager.js)MTC-SRC-002

In the server's implementation (`dist/terminal-manager.js: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: import { spawn } from 'child_process'; import path from 'path'; import { DEFAULT_COMMAND_TIMEOUT } from './config.js';

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 dist/terminal-manager.js

high Shell/command execution in server code (dist/tools/feedback.js)MTC-SRC-002

In the server's implementation (`dist/tools/feedback.js: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 { exec } from 'child_process'; import { promisify } from 'util'; import * as os from 'os'; const execAsync = 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 dist/tools/feedback.js

high Shell/command execution in server code (dist/tools/filesystem.js)MTC-SRC-002

In the server's implementation (`dist/tools/filesystem.js: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: port { execFile } from 'child_process'; import { promisify } from 'util'; import { capture } from '../utils/capture.js';

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

high Shell/command execution in server code (dist/tools/improved-process-tools.js)MTC-SRC-002

In the server's implementation (`dist/tools/improved-process-tools.js:8`): 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 fs from 'fs/promises'; import path from 'path'; import { fileURLToPath }

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 dist/tools/improved-process-tools.js

high Shell/command execution in server code (dist/tools/process.js)MTC-SRC-002

In the server's implementation (`dist/tools/process.js: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: import { exec } from 'child_process'; import { promisify } from 'util'; import os from 'os'; import { KillProcessArgsS

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

high Shell/command execution in server code (dist/track-installation.js)MTC-SRC-002

In the server's implementation (`dist/track-installation.js:105`): 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: cSync } = await import('child_process'); const ppid = process.ppid; if (ppid && process.platform !== '

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 dist/track-installation.js

medium Untrusted input concatenated into a command sink (dist/track-installation.js)MTC-SRC-009

In the server's implementation (`dist/track-installation.js:109`): 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: const parentCmd = execSync(`ps -p ${ppid} -o command=`, { encoding: 'utf8' }).trim(); parentProcessIn

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 dist/track-installation.js

medium Untrusted input concatenated into a command sink (dist/utils/ripgrep-resolver.js)MTC-SRC-009

In the server's implementation (`dist/utils/ripgrep-resolver.js:38`): 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: const result = execSync(`${whichCmd} ${systemRg}`, { encoding: 'utf-8' }).trim().split(/\r?\n/)[0]; if

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 dist/utils/ripgrep-resolver.js

medium Untrusted input concatenated into a command sink (dist/utils/system-info.js)MTC-SRC-009

In the server's implementation (`dist/utils/system-info.js:374`): 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: const version = execSync(`${cmd} --version`, { encoding: 'utf8', timeout: 5000,

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 dist/utils/system-info.js

medium Tool "write_file" can modify the filesystemMTC-CAP-002

Tool "write_file" can write, overwrite or delete files (keyword "write_file" in tool name). Verify it is scoped to a safe directory.

Fix: Constrain file operations to an explicit, non-sensitive root; reject path traversal.

Location: tool write_file

medium Tool "move_file" can modify the filesystemMTC-CAP-002

Tool "move_file" can write, overwrite or delete files (keyword "move_file" in tool name). Verify it is scoped to a safe directory.

Fix: Constrain file operations to an explicit, non-sensitive root; reject path traversal.

Location: tool move_file

medium Dynamic module load from a non-literal (dist/npm-scripts/uninstall.js)MTC-SRC-005

In the server's implementation (`dist/npm-scripts/uninstall.js:31`): 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: installModule } = await import(uninstallScriptUrl.href); if (typeof uninstallModule === 'function') {

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 dist/npm-scripts/uninstall.js

medium Dynamic module load from a non-literal (dist/setup-claude-server.js)MTC-SRC-005

In the server's implementation (`dist/setup-claude-server.js:149`): 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: nst { VERSION } = await import(versionPath); return VERSION; } const packageJsonPath =

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 dist/setup-claude-server.js

medium Dynamic module load from a non-literal (dist/tools/fuzzySearch.js)MTC-SRC-005

In the server's implementation (`dist/tools/fuzzySearch.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: ire('worker_threads'); import(workerData.moduleUrl) .then((m) => { parentPort.postMessage({ ok: 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 dist/tools/fuzzySearch.js

medium Dynamic module load from a non-literal (dist/uninstall-claude-server.js)MTC-SRC-005

In the server's implementation (`dist/uninstall-claude-server.js:108`): 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: nst { VERSION } = await import(versionPath); return VERSION; } const packageJsonPath =

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 dist/uninstall-claude-server.js

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

Tool "write_file" 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 write_file

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

Tool "move_file" 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 move_file

low Dynamic module load from a non-literal in packaging/dev tooling (dist/npm-scripts/setup.js)MTC-SRC-005

In a packaging/dev/install script (shipped, but not the server runtime) (`dist/npm-scripts/setup.js:31`): 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: : setupModule } = await import(setupScriptUrl.href); if (typeof setupModule === 'function') { 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 dist/npm-scripts/setup.js

low Package runs install-time scripts (postinstall)MTC-SUP-010

"@developkiko/desktop-commander" executes postinstall script(s) at install time. An install hook runs at install time; most are routine build/setup, but review what it does before trusting it.

Evidence: echo DsktpCmndr v1.2.7 installed

Fix: Review the scripts; install with --ignore-scripts where possible and vet what they do.

Location: package @developkiko/desktop-commander

Tools 21

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

  • read_process_outputingests untrusted inputreads sensitive data
  • get_configreads sensitive data
  • get_more_search_resultsingests untrusted input
  • move_filewrites files
  • set_config_valuereads sensitive data
  • write_filewrites files
  • create_directoryno sensitive capability
  • force_terminateno sensitive capability
  • get_file_infono sensitive capability
  • get_promptsno sensitive capability
Show 11 more tools ↓
  • get_recent_tool_callsno sensitive capability
  • get_usage_statsno sensitive capability
  • give_feedback_to_desktop_commanderno sensitive capability
  • kill_processno sensitive capability
  • list_directoryno sensitive capability
  • list_processesno sensitive capability
  • list_searchesno sensitive capability
  • list_sessionsno sensitive capability
  • read_multiple_filesno sensitive capability
  • stop_searchno sensitive capability
  • write_pdfno sensitive capability

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
v1.2.8 latest C 77/100 23 1.13.0 2026-09-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: C · 77/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/developkiko-desktop-commander/badge.svg)](https://mcptrustchecker.com/registry/developkiko-desktop-commander)
HTML
<a href="https://mcptrustchecker.com/registry/developkiko-desktop-commander"><img src="https://mcptrustchecker.com/registry/developkiko-desktop-commander/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/developkiko-desktop-commander/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 @developkiko/desktop-commander --online

Use the free API → How scoring works

Other implementations of Desktop Commander 1

Independent packages implementing the same tool, scanned with the same engine. Compare all 2 side by side →

More in Developer Tools