Openlore MCP Server

openlore npm v3.1.0 Source verified

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

Persistent architectural memory and structural cognition for AI coding agents.

Trust grade
A
93/100
Last scanned get badge →
Trust
A · 93/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 = 93/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 − 6 = 93. 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 13

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

In the server's implementation (`dist/cli/commands/change-status.js:9`): 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 { readFile, readdir } from 'node:fs/promises'; import { join, relative, s

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/commands/change-status.js

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

In the server's implementation (`dist/cli/commands/decisions.js:14`): 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 { promisify } from 'node:util'; const execFileAsync = promisify(execFile)

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

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

In the server's implementation (`dist/cli/commands/doctor.js: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: { execFile } from 'node:child_process'; import { promisify } from 'node:util'; import { logger } from '../../utils/logge

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

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

In the server's implementation (`dist/cli/commands/drift.js:136`): 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: eturn 'exit'; if (/^exec(?:\s|$)/.test(last)) return 'exec'; return null; } const SHELL_INTERPRETERS = n

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

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

In the server's implementation (`dist/cli/commands/enforce.js:25`): 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 { lstat } from 'node:fs/promises'; import { join } from 'node:path'; impo

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

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

In the server's implementation (`dist/cli/commands/import.js:25`): 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 { promisify } from 'node:util'; import { logger } from '../../utils/logge

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

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

In the server's implementation (`dist/cli/commands/prove.js:21`): 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 } from 'node:url'; import { logger } from '../../utils/lo

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

medium Dynamic module load from a non-literal (dist/core/analyzer/local-embedding-service.js)MTC-SRC-005

In the server's implementation (`dist/core/analyzer/local-embedding-service.js:57`): 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: mod = (await import(specifier)); } catch (err) { throw new Error(`Loc

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/core/analyzer/local-embedding-service.js

low Unconstrained path parameter "directory" on "get_env_vars"MTC-CAP-008

Tool "get_env_vars" takes a path parameter "directory" 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 get_env_vars · inputSchema.properties.directory

low Shell/command execution in packaging/dev tooling (dist/bench/container-launch.js)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`dist/bench/container-launch.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 { createHash } from 'node:crypto'; import { readFileSync } from 'node:fs'

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/bench/container-launch.js

low Shell/command execution in packaging/dev tooling (dist/bench/pinned-repository.js)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`dist/bench/pinned-repository.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 { randomUUID } from 'node:crypto'; import { closeSync, existsSync, mkdirS

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/bench/pinned-repository.js

low Shell/command execution in packaging/dev tooling (dist/bench/preregistered-rule.js)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`dist/bench/preregistered-rule.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 { createHash } from 'node:crypto'; import { relative, resolve } from 'nod

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/bench/preregistered-rule.js

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

"openlore" 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.mjs

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

Location: package openlore

Tools 76

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

  • get_env_varsreads sensitive data
  • analyze_codebaseno sensitive capability
  • analyze_env_impactno sensitive capability
  • analyze_error_propagationno sensitive capability
  • analyze_impactno sensitive capability
  • annotate_storyno sensitive capability
  • approve_decisionno sensitive capability
  • audit_spec_coverageno sensitive capability
  • blast_radiusno sensitive capability
  • briefing_sinceno sensitive capability
Show 66 more tools ↓
  • certify_public_surfaceno sensitive capability
  • change_impact_certificateno sensitive capability
  • check_architectureno sensitive capability
  • check_spec_driftno sensitive capability
  • detect_changesno sensitive capability
  • explain_retrieval_missno sensitive capability
  • federation_statusno sensitive capability
  • find_clonesno sensitive capability
  • find_dead_codeno sensitive capability
  • find_pathno sensitive capability
  • generate_change_proposalno sensitive capability
  • generate_testsno sensitive capability
  • get_architecture_overviewno sensitive capability
  • get_call_graphno sensitive capability
  • get_change_couplingno sensitive capability
  • get_clusterno sensitive capability
  • get_critical_hubsno sensitive capability
  • get_duplicate_reportno sensitive capability
  • get_external_packagesno sensitive capability
  • get_file_dependenciesno sensitive capability
  • get_function_bodyno sensitive capability
  • get_function_skeletonno sensitive capability
  • get_god_functionsno sensitive capability
  • get_health_mapno sensitive capability
  • get_landmarksno sensitive capability
  • get_language_supportno sensitive capability
  • get_leaf_functionsno sensitive capability
  • get_low_risk_refactor_candidatesno sensitive capability
  • get_mapno sensitive capability
  • get_mappingno sensitive capability
  • get_middleware_inventoryno sensitive capability
  • get_minimal_contextno sensitive capability
  • get_refactor_reportno sensitive capability
  • get_route_inventoryno sensitive capability
  • get_schema_inventoryno sensitive capability
  • get_signaturesno sensitive capability
  • get_specno sensitive capability
  • get_style_fingerprintno sensitive capability
  • get_subgraphno sensitive capability
  • get_surprising_connectionsno sensitive capability
  • get_test_coverageno sensitive capability
  • get_ui_component_inventoryno sensitive capability
  • list_decisionsno sensitive capability
  • list_spec_domainsno sensitive capability
  • locate_symbol_spanno sensitive capability
  • map_in_flight_conflictsno sensitive capability
  • orientno sensitive capability
  • plan_parallel_workno sensitive capability
  • prepare_spec_generationno sensitive capability
  • prepare_spec_repairno sensitive capability
  • recallno sensitive capability
  • record_decisionno sensitive capability
  • reject_decisionno sensitive capability
  • rememberno sensitive capability
  • report_coverage_gapsno sensitive capability
  • search_codeno sensitive capability
  • search_specsno sensitive capability
  • search_unifiedno sensitive capability
  • select_testsno sensitive capability
  • spec_store_statusno sensitive capability
  • structural_diffno sensitive capability
  • suggest_insertion_pointsno sensitive capability
  • sync_decisionsno sensitive capability
  • trace_execution_pathno sensitive capability
  • verify_claimno sensitive capability
  • working_set_contextno sensitive capability

What this scan could not see

Versions 7

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
v3.1.0 latest A 93/100 13 1.13.0 2026-09-09
v3.0.1 A 93/100 13 1.13.0 2026-08-31
v2.2.0 A 93/100 14 1.12.1 2026-08-23
v2.1.9 A 93/100 17 1.12.1 2026-08-16
v2.1.8 A 93/100 17 1.12.1 2026-08-09
Show 2 more versions ↓
v2.1.7 A 93/100 17 1.12.1 2026-08-02
v2.1.6 A 93/100 17 1.10.0 2026-07-25

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

Use the free API → How scoring works

More in Developer Tools