carto-md
npm
v2.1.5
Published by an unidentified publisher — no publish provenance and no public repository, so the publisher could not be verified and the source cannot be independently located.
Structural intelligence + episodic memory for AI coding tools. Indexes your codebase into SQLite — routes, models, import graph, blast radius, domains — and exposes ~75 MCP tools (validate_diff, get_change_plan, did_we_discuss_this, get_predictive_risk, …
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:
| Points | What was found | Category |
|---|---|---|
| −1.2 | Package runs install-time scripts MTC-SUP-010 | supply-chain |
2. Client adoption risk — 99 − 8 = 91. 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:
| Points | Adoption-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.
In the server's implementation (`src/security/ignore.js:24`): Reading private keys / cloud credentials, or serializing the whole environment, is a sensitive-data source that becomes exfiltration when combined with any egress. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: be caught by *.key) 'id_rsa', 'id_rsa.pub', 'id_ed25519', 'id_ed25519.pub', 'id_ecdsa', 'id_ecdsa.pub', '
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 src/security/ignore.js
In the server's implementation (`src/acp/safety.js:22`): 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 } = require('child_process'); const DEFAULT_TIMEOUT_MS = 30_000; const DEFAULT_MAX_OUTPUT_BYTES = 1_048_576;
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 src/acp/safety.js
In the server's implementation (`src/anci/git-meta.js:19`): 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 } = require('child_process'); /** * git(root, args) → trimmed stdout string, or null on any failure. */ fu
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 src/anci/git-meta.js
In the server's implementation (`src/brain/procedural/index.js:49`): 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 } = require('child_process'); let log; try { log = execFileSync('git', [ '-C', temporalStore._p
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 src/brain/procedural/index.js
In the server's implementation (`src/brain/working/index.js:16`): 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 } = require('child_process'); /** * getUncommittedFiles(projectRoot) → Array<{ path, change_kind }> * * U
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 src/brain/working/index.js
In the server's implementation (`src/cli/check.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: { execSync } = require('child_process'); const path = require('path'); const fs = require('fs'); const { SQLiteStore } =
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 src/cli/check.js
In the server's implementation (`src/cli/init.js:372`): 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 } = require('child_process'); const cmd = process.platform === 'win32' ? 'where' : 'which'; const r =
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 src/cli/init.js
In the server's implementation (`src/cli/pr-impact.js:35`): 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 } = require('child_process'); const { SQLiteStore } = require('../store/sqlite-store'); const { StoreAdapter
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 src/cli/pr-impact.js
In the server's implementation (`src/mcp/middleware/index.js:361`): 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, spawn = require('child_process').spawn, clientIn = process.stdin, clientOut = process.stdout, stderr
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 src/mcp/middleware/index.js
In the server's implementation (`src/predictive/ownership.js:15`): 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 } = require('child_process'); function gitLog(projectRoot, args, timeoutMs = 10_000) { try { return ex
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 src/predictive/ownership.js
In the server's implementation (`src/cli/doctor.js:68`): 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: t err = null; try { require(pkg); loaded = true; } catch (e) { err = e; } results.push({ id: `native-$
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 src/cli/doctor.js
In the server's implementation (`src/extractors/loader.js:26`): 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: { const plugin = require(fullPath); // Validate plugin shape if (typeof plugin.name !== 'string') {
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 src/extractors/loader.js
In the server's implementation (`src/mcp/change-plan.js:888`): 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: lower-relevance forward import(s) pruned — run \`impact\` on an anchor for the full dependency set._`); } lines.
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 src/mcp/change-plan.js
In a packaging/dev/install script (shipped, but not the server runtime) (`scripts/gen-api-docs.js:28`): 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: e no-new-func return (new Function(`return ${arrayLiteral}`))(); } function loadTools() { // Cheap eval — extract 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 scripts/gen-api-docs.js
In a packaging/dev/install script (shipped, but not the server runtime) (`scripts/postinstall.js:22`): 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 } = require('child_process'); // ---- Static metadata ---- const GRAMMARS = [ { pkg: 'tree-sitter-javascr
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/postinstall.js
"carto-md" 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 carto-md
Each tool and what it can reach — statically extracted from the published source.
get_env_varsreads sensitive dataget_token_budget_reportreads sensitive datadid_we_discuss_thisno sensitive capabilitydismiss_gapno sensitive capabilitydismiss_suggestionno sensitive capabilityexplain_change_in_natural_languageno sensitive capabilityfind_consumers_of_apino sensitive capabilityget_action_patternsno sensitive capabilityget_active_driftno sensitive capabilityget_active_suggestionsno sensitive capabilityget_ai_cost_attributionno sensitive capabilityget_arch_eventsno sensitive capabilityget_architectural_driftno sensitive capabilityget_architectureno sensitive capabilityget_blast_radiusno sensitive capabilityget_canonical_patternno sensitive capabilityget_change_planno sensitive capabilityget_change_velocityno sensitive capabilityget_churn_vs_blast_radiusno sensitive capabilityget_complexity_trendno sensitive capabilityget_contextno sensitive capabilityget_conventionsno sensitive capabilityget_cross_domainno sensitive capabilityget_cross_language_call_graphno sensitive capabilityget_cross_repo_blast_radiusno sensitive capabilityget_cross_team_couplingno sensitive capabilityget_data_flowno sensitive capabilityget_dead_code_with_confidenceno sensitive capabilityget_decision_logno sensitive capabilityget_dependency_surfaceno sensitive capabilityget_domainno sensitive capabilityget_domain_evolutionno sensitive capabilityget_domain_healthno sensitive capabilityget_domains_listno sensitive capabilityget_drift_digestno sensitive capabilityget_evolution_deltano sensitive capabilityget_file_ownershipno sensitive capabilityget_file_receiptsno sensitive capabilityget_file_summaryno sensitive capabilityget_gapsno sensitive capabilityget_high_impact_filesno sensitive capabilityget_hot_in_prod_no_testsno sensitive capabilityget_hotspot_filesno sensitive capabilityget_iac_resourcesno sensitive capabilityget_intentno sensitive capabilityget_interface_contractno sensitive capabilityget_intervention_historyno sensitive capabilityget_invariantsno sensitive capabilityget_llm_enrichmentno sensitive capabilityget_microservice_cut_pointsno sensitive capabilityget_microservices_migration_cut_pointsno sensitive capabilityget_minimal_context_for_intentno sensitive capabilityget_modelsno sensitive capabilityget_neighborsno sensitive capabilityget_org_architectureno sensitive capabilityget_org_domain_mappingno sensitive capabilityget_pending_decisionsno sensitive capabilityget_predictive_riskno sensitive capabilityget_progressive_disclosure_treeno sensitive capabilityget_recent_decisionsno sensitive capabilityget_risk_weighted_blast_radiusno sensitive capabilityget_routesno sensitive capabilityget_safety_checklistno sensitive capabilityget_semantic_diffno sensitive capabilityget_service_boundary_violationsno sensitive capabilityget_service_dependency_graphno sensitive capabilityget_session_contextno sensitive capabilityget_similar_patternsno sensitive capabilityget_stale_docsno sensitive capabilityget_structureno sensitive capabilityget_temporal_contextno sensitive capabilityget_test_coverage_mapno sensitive capabilityget_upgrade_riskno sensitive capabilityget_working_memoryno sensitive capabilityhistoryno sensitive capabilityimpactno sensitive capabilityingest_otlp_tracesno sensitive capabilitymemoryno sensitive capabilityorgno sensitive capabilitypatternsno sensitive capabilityscaffold_for_intentno sensitive capabilitysearch_routesno sensitive capabilityset_intentno sensitive capabilitysimulate_change_impactno sensitive capabilityvalidate_changeno sensitive capabilityvalidate_diffno sensitive capabilityScan 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.
| Version | Score | Findings | Engine | Scanned |
|---|---|---|---|---|
v2.1.5 latest |
A 91/100 | 16 | 1.13.0 | 2026-09-07 |
v2.1.4 |
A 91/100 | 16 | 1.13.0 | 2026-08-31 |
v2.1.3 |
A 91/100 | 16 | 1.12.1 | 2026-08-03 |
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.
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 carto-md --online
Hotel booking MCP server — 300K+ properties, real confirmation numbers, loyalty programs. Builders monetize every booking via Stripe Connect. The first MCP server that completes real hotel reservations inside AI conversations.
Manage AdGuard Home through AI assistants
Read-only Azure DevOps for MCP clients using only your existing browser session — no PAT, no Azure CLI. Browse work items, pull requests, comments, attachments and Artifacts feeds across every project, repo and feed you can access.
MCP server for Adobe Experience Manager Assets integration development
Servidor MCP para el tiempo oficial de España (API pública OpenData de AEMET). Predicción, observación y avisos como herramientas MCP tipadas.
A standalone MCP stdio bridge for Affinity by Canva's local MCP SSE server.