Indusk MCP Server

@infinitedusky/indusk-mcp npm v1.42.0

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

InDusk development system — skills, MCP tools, and CLI for structured AI-assisted development

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 24

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

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

high Dynamic code execution in server code (admin/.next/build/chunks/node_modules__pnpm_0e-dfa2._.js)MTC-SRC-001

In the server's implementation (`admin/.next/build/chunks/node_modules__pnpm_0e-dfa2._.js:2548`): 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: ); let templateFn = new Function(`return ${template}`)(); return templateFn(comparator); } /** * Sort the given

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 admin/.next/build/chunks/node_modules__pnpm_0e-dfa2._.js

high Dynamic code execution in server code (admin/.next/server/chunks/ssr/[root-of-the-server]__0p.51_4._.js)MTC-SRC-001

In the server's implementation (`admin/.next/server/chunks/ssr/[root-of-the-server]__0p.51_4._.js:1`): 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: +str.trim()+";\n}());"),eval(str)||{}}catch(err){if(!1!==wrap&&/(unexpected|identifier)/i.test(err.message))return parse

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 admin/.next/server/chunks/ssr/[root-of-the-server]__0p.51_4._.js

high Dynamic code execution in server code (hooks/eval-trigger.js)MTC-SRC-001

In the server's implementation (`hooks/eval-trigger.js:186`): 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: ined ${drained} pending eval(s); ${failed.length} FAILED and remain queued for retry; ${alreadyDrained} already drained.

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 hooks/eval-trigger.js

high Shell/command execution in server code (admin/.next/build/chunks/[root-of-the-server]__0-n8fv.._.js)MTC-SRC-002

In the server's implementation (`admin/.next/build/chunks/[root-of-the-server]__0-n8fv.._.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: s = [ "[turbopack-node]/child_process/globals.ts [postcss] (ecmascript)", ((__turbopack_context__, module, exports) => {

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 admin/.next/build/chunks/[root-of-the-server]__0-n8fv.._.js

high Shell/command execution in server code (admin/.next/build/postcss.js)MTC-SRC-002

In the server's implementation (`admin/.next/build/postcss.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: ) R.m("[turbopack-node]/child_process/globals.ts [postcss] (ecmascript)") R.m("[turbopack-node]/child_process/evaluate.t

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 admin/.next/build/postcss.js

high Shell/command execution in server code (admin/.next/server/chunks/ssr/[root-of-the-server]__0f9b~qs._.js)MTC-SRC-002

In the server's implementation (`admin/.next/server/chunks/ssr/[root-of-the-server]__0f9b~qs._.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: )=>{b.exports=a.x("node:child_process",()=>require("node:child_process"))},54779,a=>{"use strict";var b=a.i(44673),c=a.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 admin/.next/server/chunks/ssr/[root-of-the-server]__0f9b~qs._.js

high Shell/command execution in server code (dist/bin/commands/agent.js)MTC-SRC-002

In the server's implementation (`dist/bin/commands/agent.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: spawnSync } from "node:child_process"; import { existsSync, readFileSync, renameSync, writeFileSync } from "node:fs"; 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/bin/commands/agent.js

high Shell/command execution in server code (dist/bin/commands/doppler.js)MTC-SRC-002

In the server's implementation (`dist/bin/commands/doppler.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: spawnSync } from "node:child_process"; import { existsSync, readdirSync, readFileSync, statSync, writeFileSync } 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/bin/commands/doppler.js

high Shell/command execution in server code (dist/bin/commands/eval.js)MTC-SRC-002

In the server's implementation (`dist/bin/commands/eval.js:152`): 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: } = await import("node:child_process"); const { rmSync, writeFileSync } = await import("node:fs"); const { base

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/bin/commands/eval.js

high Shell/command execution in server code (dist/bin/commands/extensions.js)MTC-SRC-002

In the server's implementation (`dist/bin/commands/extensions.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: { execSync } from "node:child_process"; import { cpSync, existsSync, mkdirSync, readdirSync, readFileSync, rmSync, write

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/bin/commands/extensions.js

high Shell/command execution in server code (dist/bin/commands/infra.js)MTC-SRC-002

In the server's implementation (`dist/bin/commands/infra.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: { execSync } from "node:child_process"; import { existsSync, mkdirSync, readFileSync, writeFileSync } from "node:fs"; im

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/bin/commands/infra.js

high Shell/command execution in server code (dist/bin/commands/init-docs.js)MTC-SRC-002

In the server's implementation (`dist/bin/commands/init-docs.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: { execSync } from "node:child_process"; import { existsSync, mkdirSync, readFileSync, writeFileSync } from "node:fs"; im

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/bin/commands/init-docs.js

high Shell/command execution in server code (dist/bin/commands/init.js)MTC-SRC-002

In the server's implementation (`dist/bin/commands/init.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: spawnSync } from "node:child_process"; import { cpSync, existsSync, mkdirSync, readFileSync, writeFileSync } from "node

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/bin/commands/init.js

medium Hardcoded egress to an external endpoint (dist/server/index.js)MTC-SRC-003

In the server's implementation (`dist/server/index.js:35`): 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: s(currentVersion) { fetch("https://registry.npmjs.org/@infinitedusky/indusk-mcp/latest") .then((res) => res.

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/server/index.js

medium Untrusted input concatenated into a command sink (dist/bin/commands/eval.js)MTC-SRC-009

In the server's implementation (`dist/bin/commands/eval.js:167`): 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: HEAD try { execSync(`git worktree add "${worktreePath}" HEAD --detach`, { cwd: projectRoot,

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/bin/commands/eval.js

medium Untrusted input concatenated into a command sink (dist/bin/commands/extensions.js)MTC-SRC-009

In the server's implementation (`dist/bin/commands/extensions.js:188`): 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: e: true }); execSync(`npm pack ${pkg} --pack-destination "${tmpDir}"`, { encoding: "utf-8",

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/bin/commands/extensions.js

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

In the server's implementation (`dist/tools/graph-tools.js:31`): 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: t to Redis port execSync(`node -e "const s=require('net').connect(6379,'${host}');s.setTimeout(2000);s.on('conne

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

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

Tool "quality_check" 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 quality_check · inputSchema.properties.command

medium Dynamic module load from a non-literal (admin/.next/build/chunks/[turbopack]_runtime.js)MTC-SRC-005

In the server's implementation (`admin/.next/build/chunks/[turbopack]_runtime.js:588`): 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: y { raw = await import(id); } catch (err) { // TODO(alexkirsz) This can happen when a client-side mo

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 admin/.next/build/chunks/[turbopack]_runtime.js

medium Dynamic module load from a non-literal (admin/.next/server/chunks/[turbopack]_runtime.js)MTC-SRC-005

In the server's implementation (`admin/.next/server/chunks/[turbopack]_runtime.js:601`): 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: y { raw = await import(id); } catch (err) { // TODO(alexkirsz) This can happen when a client-side mo

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 admin/.next/server/chunks/[turbopack]_runtime.js

medium Dynamic module load from a non-literal (admin/.next/server/chunks/ssr/[turbopack]_runtime.js)MTC-SRC-005

In the server's implementation (`admin/.next/server/chunks/ssr/[turbopack]_runtime.js:601`): 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: y { raw = await import(id); } catch (err) { // TODO(alexkirsz) This can happen when a client-side mo

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 admin/.next/server/chunks/ssr/[turbopack]_runtime.js

medium Dynamic module load from a non-literal (hooks/eval-trigger.js)MTC-SRC-005

In the server's implementation (`hooks/eval-trigger.js:313`): 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: olvedFindings } = await import(findingsPath); const unresolved = getUnresolvedFindings(statePath); if (unresolved.le

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 hooks/eval-trigger.js

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

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

Tools 42

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

  • quality_checkruns code / shell
  • add_lessonno sensitive capability
  • advance_planno sensitive capability
  • check_docs_coverageno sensitive capability
  • check_healthno sensitive capability
  • context_beamno sensitive capability
  • extensions_statusno sensitive capability
  • get_contextno sensitive capability
  • get_plan_statusno sensitive capability
  • get_project_infono sensitive capability
Show 32 more tools ↓
  • get_quality_configno sensitive capability
  • get_skill_summariesno sensitive capability
  • get_skill_versionsno sensitive capability
  • get_system_versionno sensitive capability
  • graph_calleesno sensitive capability
  • graph_callersno sensitive capability
  • graph_captureno sensitive capability
  • graph_complexityno sensitive capability
  • graph_doctorno sensitive capability
  • graph_ensureno sensitive capability
  • graph_findno sensitive capability
  • graph_find_dead_codeno sensitive capability
  • graph_rebuildno sensitive capability
  • graph_statsno sensitive capability
  • graph_statusno sensitive capability
  • graph_syncno sensitive capability
  • graph_visualizeno sensitive capability
  • graph_watchno sensitive capability
  • highlightno sensitive capability
  • highlight_mark_processedno sensitive capability
  • highlights_unprocessedno sensitive capability
  • index_projectno sensitive capability
  • list_docsno sensitive capability
  • list_lessonsno sensitive capability
  • list_plansno sensitive capability
  • order_plansno sensitive capability
  • query_dependenciesno sensitive capability
  • query_graphno sensitive capability
  • suggest_ruleno sensitive capability
  • tail_logsno sensitive capability
  • update_contextno sensitive capability
  • update_current_sectionno sensitive capability

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
v1.42.0 latest B 81/100 24 1.13.0 2026-09-07
v1.41.0 B 81/100 24 1.13.0 2026-08-31
v1.40.3 B 81/100 24 1.13.0 2026-08-30
v1.40.0 B 81/100 24 1.13.0 2026-08-29
v1.38.3 B 81/100 24 1.13.0 2026-08-28
Show 5 more versions ↓
v1.36.3 B 81/100 24 1.13.0 2026-08-27
v1.36.2 B 81/100 24 1.12.1 2026-08-19
v1.36.1 B 81/100 24 1.12.1 2026-08-17
v1.36.0 B 81/100 24 1.12.1 2026-08-16
v1.35.1 B 81/100 23 1.12.1 2026-08-12

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/infinitedusky-indusk-mcp/badge.svg)](https://mcptrustchecker.com/registry/infinitedusky-indusk-mcp)
HTML
<a href="https://mcptrustchecker.com/registry/infinitedusky-indusk-mcp"><img src="https://mcptrustchecker.com/registry/infinitedusky-indusk-mcp/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/infinitedusky-indusk-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 @infinitedusky/indusk-mcp --online

Use the free API → How scoring works

More in Other