Vlm Code Context MCP Server

vlm-code-context-mcp npm v2.4.0

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

AI-powered virtual IT department via MCP — codebase intelligence, 9-agent scrum team, sprint management, and React dashboard in one npm package

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

PointsWhat was foundCategory
−1.2 Package runs install-time scripts MTC-SUP-010 supply-chain

2. Client adoption risk — 99 − 7 = 92. 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 8

high Read-and-egress in one tool: "export_to_file"MTC-FLOW-003

Tool "export_to_file" can both read sensitive data and send data to an external destination. Even without an explicit untrusted-input leg, this is a single-call data-exfiltration path if the model is ever manipulated.

Fix: Separate reading from sending; require explicit user confirmation before egress of file/secret contents.

Location: flow export_to_file

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

Tools that read sensitive data ([dump_database, restore_database, export_to_file, import_from_file, get_token_usage]) and tools that can send data out ([export_to_file, request_user_input]) are exposed together. An agent can move private data to the sink.

Evidence: sources [dump_database, restore_database, export_to_file, import_from_file, get_token_usage] → sinks [export_to_file, request_user_input]

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

Location: flow dump_database → request_user_input

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

In the server's implementation (`dist/dashboard/dashboard.js:464`): 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"); try { buildHash = execSync("git rev-parse --short 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/dashboard/dashboard.js

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

In the server's implementation (`dist/scrum/defaults.js:162`): 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"; /** * Pre-build check shared by the reset_* tools: ensure dist/ matches src/ be

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/scrum/defaults.js

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

In the server's implementation (`dist/scrum/frontend-playbook.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: ecFileSync } from "node:child_process"; import { getEnabledSkillSets, SKILL_SETS } from "./skill-sets.js"; /** Read one

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/scrum/frontend-playbook.js

low Shell/command execution in packaging/dev tooling (scripts/make-legacy-fixture.mts)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`scripts/make-legacy-fixture.mts: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: ecFileSync } from "node:child_process"; import fs from "node:fs"; import os from "node:os"; import path from "node:path"

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/make-legacy-fixture.mts

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

In a packaging/dev/install script (shipped, but not the server runtime) (`scripts/sync-skills.mjs: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 } from "node:child_process"; import { fileURLToPath, pathToFileURL } from "node:url"; const DEFAULT_REPO = "

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-skills.mjs

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

"vlm-code-context-mcp" 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: node scripts/postinstall.js

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

Location: package vlm-code-context-mcp

Tools 98

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

  • export_to_filereads sensitive datanetwork egress
  • dump_databasereads sensitive data
  • get_token_usagereads sensitive data
  • import_from_filereads sensitive data
  • request_user_inputnetwork egress
  • restore_databasereads sensitive data
  • acknowledge_ticket_changesno sensitive capability
  • add_dependencyno sensitive capability
  • add_retro_findingno sensitive capability
  • add_tagno sensitive capability
Show 88 more tools ↓
  • advance_sprintno sensitive capability
  • analyze_retro_patternsno sensitive capability
  • create_blockerno sensitive capability
  • create_discoveryno sensitive capability
  • create_epicno sensitive capability
  • create_milestoneno sensitive capability
  • create_sprintno sensitive capability
  • create_ticketno sensitive capability
  • executeno sensitive capability
  • export_sprint_reportno sensitive capability
  • find_symbolno sensitive capability
  • generate_vision_animationno sensitive capability
  • get_agentno sensitive capability
  • get_audit_trailno sensitive capability
  • get_backlogno sensitive capability
  • get_burndownno sensitive capability
  • get_changesno sensitive capability
  • get_dependency_graphno sensitive capability
  • get_discovery_coverageno sensitive capability
  • get_file_contextno sensitive capability
  • get_mood_trendsno sensitive capability
  • get_onboarding_statusno sensitive capability
  • get_project_statusno sensitive capability
  • get_resume_stateno sensitive capability
  • get_skillno sensitive capability
  • get_sprintno sensitive capability
  • get_sprint_configno sensitive capability
  • get_sprint_instructionsno sensitive capability
  • get_sprint_playbookno sensitive capability
  • get_sprint_summaryno sensitive capability
  • get_ticketno sensitive capability
  • get_time_reportno sensitive capability
  • get_user_responseno sensitive capability
  • get_velocity_trendsno sensitive capability
  • handle_run_kickoffno sensitive capability
  • handle_run_retrono sensitive capability
  • handle_run_reviewno sensitive capability
  • healthno sensitive capability
  • index_directoryno sensitive capability
  • link_discovery_to_ticketno sensitive capability
  • link_ticket_to_epicno sensitive capability
  • link_ticket_to_milestoneno sensitive capability
  • list_agentsno sensitive capability
  • list_decisionsno sensitive capability
  • list_discoveriesno sensitive capability
  • list_epicsno sensitive capability
  • list_recent_eventsno sensitive capability
  • list_retro_findingsno sensitive capability
  • list_sprintsno sensitive capability
  • list_tagsno sensitive capability
  • list_ticketsno sensitive capability
  • load_phase_contextno sensitive capability
  • log_bugno sensitive capability
  • log_decisionno sensitive capability
  • log_eventno sensitive capability
  • log_timeno sensitive capability
  • log_token_usageno sensitive capability
  • plan_sprintno sensitive capability
  • queryno sensitive capability
  • record_moodno sensitive capability
  • remove_dependencyno sensitive capability
  • remove_tagno sensitive capability
  • reset_agentsno sensitive capability
  • reset_skillsno sensitive capability
  • reset_sprint_processno sensitive capability
  • resolve_blockerno sensitive capability
  • run_onboardingno sensitive capability
  • search_filesno sensitive capability
  • search_scrumno sensitive capability
  • send_claude_outputno sensitive capability
  • send_claude_stepno sensitive capability
  • send_step_progressno sensitive capability
  • set_change_reasonno sensitive capability
  • set_descriptionno sensitive capability
  • set_directory_descriptionno sensitive capability
  • snapshot_sprint_metricsno sensitive capability
  • start_sprintno sensitive capability
  • sync_scrum_datano sensitive capability
  • triage_retro_findingno sensitive capability
  • update_agentno sensitive capability
  • update_discoveryno sensitive capability
  • update_epicno sensitive capability
  • update_milestoneno sensitive capability
  • update_skill_setsno sensitive capability
  • update_sprintno sensitive capability
  • update_sprint_configno sensitive capability
  • update_ticketno sensitive capability
  • update_visionno sensitive capability

Toxic flows 2

Cross-tool combinations that form a data-exfiltration primitive (untrusted input → sensitive source → external sink).

What this scan could not see

Versions 2

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.4.0 latest A 92/100 8 1.13.0 2026-09-07
v2.3.0 A 92/100 4 1.13.0 2026-09-01

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: A · 92/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/vlm-code-context-mcp/badge.svg)](https://mcptrustchecker.com/registry/vlm-code-context-mcp)
HTML
<a href="https://mcptrustchecker.com/registry/vlm-code-context-mcp"><img src="https://mcptrustchecker.com/registry/vlm-code-context-mcp/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/vlm-code-context-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 vlm-code-context-mcp --online

Use the free API → How scoring works

More in Developer Tools