Staff MCP Server

staff-mcp npm v1.1.2 Source verified

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

[English](./README.md) | [简体中文](./README_zh.md)

Trust grade
B
85/100
Last scanned get badge →
Trust
B · 85/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 91 − adoption risk = 85/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 − 6 = 85. 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

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 28

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

Tools that read sensitive data ([read_file, list_dir]) and tools that can send data out ([manage_mcp_session, execute_command]) are exposed together. An agent can move private data to the sink.

Evidence: sources [read_file, list_dir] → sinks [manage_mcp_session, execute_command]

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

Location: flow read_file → manage_mcp_session

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

Tool "manage_mcp_session" appears to run shell commands or evaluate code (parameter "command"). 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 manage_mcp_session

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

Tool "execute_command" appears to run shell commands or evaluate code (keyword "execute command" in tool name, parameter "command"). 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 execute_command

high Shell/command execution in server code (dist/src/docker-proxy.js)MTC-SRC-002

In the server's implementation (`dist/src/docker-proxy.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: rt { spawn } from "node:child_process"; import { randomBytes } from "node:crypto"; import * as fs 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 dist/src/docker-proxy.js

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

In the server's implementation (`dist/src/lsp/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: spawn, execSync } from "child_process"; import * as path from "path"; import * as fs from "fs"; import { pathToFileURL,

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/src/lsp/manager.js

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

In the server's implementation (`dist/src/tools/file-tools.js:3`): 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 readline from "readline"; 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 dist/src/tools/file-tools.js

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

In the server's implementation (`dist/src/tools/mcp-client-tools.js:2`): 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 { Client } from "@modelcontextprotocol/sdk/client/index.js"; import { Std

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/src/tools/mcp-client-tools.js

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

In the server's implementation (`dist/src/tools/shell-tools.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: spawn, execSync } from "child_process"; import * as os from "os"; import * as fs from "fs"; import { z } from "zod"; imp

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

high Shell/command execution in server code (dist/src/utils/tool-utils.js)MTC-SRC-002

In the server's implementation (`dist/src/utils/tool-utils.js:3`): 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: t { exec, spawn } from "child_process"; import { promisify } from "util"; import { createRequire } from "node:module"; i

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/src/utils/tool-utils.js

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

In the server's implementation (`dist/src/lsp/manager.js:250`): 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: `); execSync(`${platformNpm} ${args.join(" ")}`, { cwd: STAFF_TOOLS_DIR,

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/src/lsp/manager.js

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

In the server's implementation (`dist/src/tools/shell-tools.js:173`): 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 /pid ${child.pid} /T /F`, { stdio: "ignore" }); } 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 dist/src/tools/shell-tools.js

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

Tool "edit_file_by_replace" can write, overwrite or delete files (keyword "edit_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 edit_file_by_replace

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 "delete_file" can modify the filesystemMTC-CAP-002

Tool "delete_file" can write, overwrite or delete files (keyword "delete_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 delete_file

medium Unconstrained command parameter "command" on "manage_mcp_session"MTC-CAP-006

Tool "manage_mcp_session" takes a command-shaped parameter "command" with no enum/pattern constraint. Free-form, model- or attacker-controlled arguments reaching a shell is the command-injection precondition.

Fix: Constrain the parameter (enum/pattern), or build the command from a fixed template with escaped args.

Location: tool manage_mcp_session · inputSchema.properties.command

medium Unconstrained command parameter "command" on "execute_command"MTC-CAP-006

Tool "execute_command" takes a command-shaped parameter "command" with no enum/pattern constraint. Free-form, model- or attacker-controlled arguments reaching a shell is the command-injection precondition.

Fix: Constrain the parameter (enum/pattern), or build the command from a fixed template with escaped args.

Location: tool execute_command · inputSchema.properties.command

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

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

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 "delete_file" declares no destructiveHintMTC-CAP-005

Tool "delete_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 delete_file

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

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

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

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

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

Tool "read_file" 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 read_file · inputSchema.properties.path

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

Tool "edit_file_by_replace" 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 edit_file_by_replace · inputSchema.properties.path

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

Tool "write_file" 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 write_file · inputSchema.properties.path

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

Tool "delete_file" 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 delete_file · inputSchema.properties.path

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

Tool "list_dir" 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_dir · inputSchema.properties.path

low Shell/command execution in packaging/dev tooling (dist/tests/package-info.test.js)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`dist/tests/package-info.test.js:2`): 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 } from "node:child_process"; import * as fs from "node:fs"; import * as path from "node:path"; import { pathT

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/tests/package-info.test.js

low Shell/command execution in packaging/dev tooling (dist/tests/shell-tools.test.js)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`dist/tests/shell-tools.test.js:70`): 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 g = spawn(process.execPath, ['-e', 'setInterval(() => {}, 1000)']); conso

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/tests/shell-tools.test.js

Tools 17

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

  • delete_filewrites files
  • edit_file_by_replacewrites files
  • execute_commandruns code / shell
  • list_dirreads sensitive data
  • manage_mcp_sessionruns code / shell
  • read_filereads sensitive data
  • write_filewrites files
  • call_mcp_session_toolno sensitive capability
  • explore_mcp_sessionno sensitive capability
  • get_diagnosticsno sensitive capability
Show 7 more tools ↓
  • get_document_symbolsno sensitive capability
  • hoverno sensitive capability
  • manage_background_taskno sensitive capability
  • read_skill_fileno sensitive capability
  • search_workspaceno sensitive capability
  • skillno sensitive capability
  • symbol_lookupno 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 6

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.1.2 latest B 85/100 28 1.13.0 2026-09-07
v1.1.1 B 85/100 28 1.12.1 2026-08-02
v1.1.0 B 85/100 28 1.12.1 2026-07-29
v1.0.30 B 88/100 29 1.12.1 2026-07-28
v1.0.29 B 88/100 29 1.12.1 2026-07-27
Show 1 more version ↓
v1.0.28 B 87/100 8 1.5.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: B · 85/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/staff-mcp/badge.svg)](https://mcptrustchecker.com/registry/staff-mcp)
HTML
<a href="https://mcptrustchecker.com/registry/staff-mcp"><img src="https://mcptrustchecker.com/registry/staff-mcp/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/staff-mcp/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 staff-mcp --online

Use the free API → How scoring works

More in Developer Tools