Midas MCP Server

midas-mcp npm v5.45.6

Published by christiancattaneo — 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 Golden Code methodology - everything you vibecode turns to gold

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 88 − 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.7 = 88. What the published surface and source actually contain:

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

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

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

In the server's implementation (`dist/auth.js: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: exec } = await import('child_process'); const openCmd = process.platform === 'darwin' ? 'open' :

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/auth.js

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

In the server's implementation (`dist/claude-code.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: execSync, spawn } from 'child_process'; import { existsSync } from 'fs'; import { homedir } from 'os'; import { join } 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/claude-code.js

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

In the server's implementation (`dist/cli.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: port { execSync } from 'child_process'; import { loadState, setPhase } from './state/phase.js'; import { startProject }

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/cli.js

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

In the server's implementation (`dist/cursor.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: port { execSync } from 'child_process'; import { logger } from './logger.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/cursor.js

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

In the server's implementation (`dist/github-integration.js:12`): 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 { detectPhaseFromArtifacts } from './phase-detector.js'; import { sanitiz

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/github-integration.js

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

In the server's implementation (`dist/phase-detector.js:32`): 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 { execSync } from 'child_process'; import { discoverDocsSync } from './docs-discovery.js'; import { getGatesStatus

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/phase-detector.js

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

In the server's implementation (`dist/pilot.js:12`): 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 { randomBytes } from 'crypto'; import { isAuthenticated, getAuthenticated

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/pilot.js

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

In the server's implementation (`dist/tools/cleanup.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: port { execSync } from 'child_process'; import { sanitizePath, isShellSafe } from '../security.js'; import { logEvent }

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/cleanup.js

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

In the server's implementation (`dist/tools/completeness.js:11`): 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 { execSync } from 'child_process'; // ============================================================================

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/completeness.js

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

In the server's implementation (`dist/tools/grow.js:10`): 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 { execSync } from 'child_process'; import { sanitizePath } from '../security.js'; import { loadState, saveState, cr

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/grow.js

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

In the server's implementation (`dist/auth.js:55`): 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 response = await fetch('https://github.com/login/device/code', { method: 'POST', headers:

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/auth.js

medium Hardcoded egress to an external endpoint (dist/tools/vuln-scan.js)MTC-SRC-003

In the server's implementation (`dist/tools/vuln-scan.js:434`): 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 response = await fetch(`https://registry.npmjs.org/${encodeURIComponent(pkg)}`, { method: '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 dist/tools/vuln-scan.js

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

In the server's implementation (`dist/auth.js:245`): 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: 'xdg-open'; exec(`${openCmd} ${flow.verificationUri}`); } catch { // Silent fail

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/auth.js

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

In the server's implementation (`dist/cursor.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 result = execSync(`sqlite3 "${dbPath}" "${query}"`, { encoding: 'utf-8', maxBuffer: 50 * 1024 * 1024 } //

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/cursor.js

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

In the server's implementation (`dist/tools/grow.js:206`): 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: to; const log = execSync(`git log ${range} --pretty=format:"%H|%s|%ai" --no-merges`, { cwd: projectP

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/grow.js

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

In the server's implementation (`dist/tools/scope.js:183`): 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 filesAtStart = execSync(`git ls-tree -r --name-only ${firstCommit}`, { cwd: projectPath, encoding: 'utf8' })

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/scope.js

Tools 56

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

  • midas_advance_phaseno sensitive capability
  • midas_analyzeno sensitive capability
  • midas_archive_cycleno sensitive capability
  • midas_auditno sensitive capability
  • midas_cancel_hotfixno sensitive capability
  • midas_changelogno sensitive capability
  • midas_check_docsno sensitive capability
  • midas_check_scope_creepno sensitive capability
  • midas_cleanup_suggestionno sensitive capability
  • midas_clear_taskno sensitive capability
Show 46 more tools ↓
  • midas_complete_hotfixno sensitive capability
  • midas_completenessno sensitive capability
  • midas_complexityno sensitive capability
  • midas_cost_reportno sensitive capability
  • midas_detect_project_typeno sensitive capability
  • midas_enforce_advanceno sensitive capability
  • midas_gameplan_analyzeno sensitive capability
  • midas_gameplan_progressno sensitive capability
  • midas_get_phaseno sensitive capability
  • midas_get_providerno sensitive capability
  • midas_get_stuckno sensitive capability
  • midas_horizonno sensitive capability
  • midas_hotfix_statusno sensitive capability
  • midas_journal_listno sensitive capability
  • midas_journal_saveno sensitive capability
  • midas_journal_searchno sensitive capability
  • midas_list_providersno sensitive capability
  • midas_next_cycleno sensitive capability
  • midas_oneshotno sensitive capability
  • midas_preflightno sensitive capability
  • midas_preflight_updateno sensitive capability
  • midas_record_errorno sensitive capability
  • midas_record_fixno sensitive capability
  • midas_retrospectiveno sensitive capability
  • midas_scan_debtno sensitive capability
  • midas_set_api_keyno sensitive capability
  • midas_set_phaseno sensitive capability
  • midas_set_providerno sensitive capability
  • midas_set_scope_baselineno sensitive capability
  • midas_set_taskno sensitive capability
  • midas_show_exampleno sensitive capability
  • midas_simplifyno sensitive capability
  • midas_smart_suggestno sensitive capability
  • midas_start_hotfixno sensitive capability
  • midas_start_projectno sensitive capability
  • midas_suggest_promptno sensitive capability
  • midas_tornadono sensitive capability
  • midas_unstuckno sensitive capability
  • midas_update_taskno sensitive capability
  • midas_validate_gameplanno sensitive capability
  • midas_validate_gatesno sensitive capability
  • midas_validate_planningno sensitive capability
  • midas_validate_prdno sensitive capability
  • midas_verifyno sensitive capability
  • midas_verify_deployno sensitive capability
  • midas_vuln_scanno 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
v5.45.6 latest B 81/100 16 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: B · 81/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/midas-mcp/badge.svg)](https://mcptrustchecker.com/registry/midas-mcp)
HTML
<a href="https://mcptrustchecker.com/registry/midas-mcp"><img src="https://mcptrustchecker.com/registry/midas-mcp/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/midas-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 midas-mcp --online

Use the free API → How scoring works

More in Developer Tools