memorix
npm
v1.8.9
Source verified
Published by avids2 — publish provenance cryptographically ties this package to that repository. That is proof of origin, not an official vendor package.
Local-first shared memory layer for AI coding agents across MCP clients, Git history, reasoning context, and project sessions.
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 − 6.3 = 94. What the published surface and source actually contain:
| Points | What was found | Category |
|---|---|---|
| −6.3 | Untrusted input concatenated into a command sink MTC-SRC-009 | injection |
2. Client adoption risk — 94 − 10 = 84. 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 |
|---|---|
| −10 | capability blast radius (critical) — 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.
In the server's implementation (`dist/cli/memcode.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: ync as __ms} from "node:child_process"; import {fileURLToPath as __fu} from "node:url"; if(!process.env.__MEMORIX_HEAP){
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/memcode.js
In the server's implementation (`plugins/hermes/memorix/__init__.py:20`): 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: try: result = subprocess.run( command, input=input_data, capture_output=Tr
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 plugins/hermes/memorix/__init__.py
In the server's implementation (`plugins/omp/memorix/extensions/memorix.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'; const SESSION_ID = `omp-${Date.now().toString(36)}-${Math.random().toString(36)
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 plugins/omp/memorix/extensions/memorix.js
In the server's implementation (`plugins/openclaw/memorix/hooks/memorix/handler.ts: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'; const SESSION_ID = `openclaw-${Date.now().toString(36)}-${Math.random().toStrin
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 plugins/openclaw/memorix/hooks/memorix/handler.ts
In the server's implementation (`plugins/pi/memorix/extensions/memorix.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'; const SESSION_ID = `pi-${Date.now().toString(36)}-${Math.random().toString(36).
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 plugins/pi/memorix/extensions/memorix.js
In the server's implementation (`src/cli/commands/agent-integrations.ts: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, realpathSync } from 'node:fs'; import { mkdir, readFile, wr
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/commands/agent-integrations.ts
In the server's implementation (`src/cli/commands/background.ts:24`): 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 { randomBytes } from 'node:crypto'; import os from 'node:os'; import { pa
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/commands/background.ts
In the server's implementation (`src/cli/commands/doctor.ts:54`): 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 report: Record<string, unknown> = {}; const issues: 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/cli/commands/doctor.ts
In the server's implementation (`src/cli/commands/hooks-install.ts:130`): 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'); execSync('pwsh --version', { encoding: 'utf-8', tim
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/commands/hooks-install.ts
In the server's implementation (`src/cli/tui/App.tsx:828`): 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: rd) { try { execSync(`start "" "${background.dashboard}"`, { stdio: 'pipe', windowsHide: true }); } catch {
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/tui/App.tsx
In a packaging/dev/install script (shipped, but not the server runtime) (`src/cli/commands/setup.ts: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: spawnSync } from 'node:child_process'; import { existsSync } from 'node:fs'; import { copyFile, mkdir, readFile, readdi
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/commands/setup.ts
Each tool and what it can reach — statically extracted from the published source.
memorix_detailingests untrusted inputteam_messageingests untrusted inputadd_observationsno sensitive capabilitycreate_entitiesno sensitive capabilitycreate_relationsno sensitive capabilitydelete_entitiesno sensitive capabilitydelete_observationsno sensitive capabilitydelete_relationsno sensitive capabilitymemorix_audit_projectno sensitive capabilitymemorix_codegraph_statusno sensitive capabilitymemorix_compaction_checkpointno sensitive capabilitymemorix_consolidateno sensitive capabilitymemorix_context_packno sensitive capabilitymemorix_dashboardno sensitive capabilitymemorix_deduplicateno sensitive capabilitymemorix_evidenceno sensitive capabilitymemorix_feedbackno sensitive capabilitymemorix_formation_metricsno sensitive capabilitymemorix_graph_contextno sensitive capabilitymemorix_handoffno sensitive capabilitymemorix_ingest_imageno sensitive capabilitymemorix_knowledgeno sensitive capabilitymemorix_mediano sensitive capabilitymemorix_pollno sensitive capabilitymemorix_project_contextno sensitive capabilitymemorix_promoteno sensitive capabilitymemorix_resolveno sensitive capabilitymemorix_retentionno sensitive capabilitymemorix_rules_syncno sensitive capabilitymemorix_searchno sensitive capabilitymemorix_search_reasoningno sensitive capabilitymemorix_session_contextno sensitive capabilitymemorix_session_endno sensitive capabilitymemorix_session_startno sensitive capabilitymemorix_skillsno sensitive capabilitymemorix_storeno sensitive capabilitymemorix_store_reasoningno sensitive capabilitymemorix_suggest_topic_keyno sensitive capabilitymemorix_timelineno sensitive capabilitymemorix_transferno sensitive capabilitymemorix_workspace_syncno sensitive capabilityopen_nodesno sensitive capabilityread_graphno sensitive capabilitysearch_nodesno sensitive capabilityteam_file_lockno sensitive capabilityteam_manageno sensitive capabilityteam_taskno 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 |
|---|---|---|---|---|
v1.8.9 latest |
B 84/100 | 11 | 1.13.0 | 2026-09-07 |
v1.8.8 |
B 83/100 | 11 | 1.13.0 | 2026-09-06 |
v1.8.6 |
B 84/100 | 11 | 1.13.0 | 2026-09-01 |
v1.8.5 |
B 84/100 | 11 | 1.13.0 | 2026-08-31 |
v1.8.4 |
B 84/100 | 11 | 1.13.0 | 2026-08-30 |
v1.8.3 |
B 84/100 | 11 | 1.13.0 | 2026-08-27 |
v1.8.2 |
B 84/100 | 11 | 1.13.0 | 2026-08-25 |
v1.8.1 |
B 84/100 | 11 | 1.12.1 | 2026-08-24 |
v1.7.3 |
B 84/100 | 11 | 1.12.1 | 2026-08-23 |
v1.7.2 |
B 84/100 | 11 | 1.12.1 | 2026-08-22 |
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 memorix --online
FDA device & vehicle recall risk for AI agents: recall history, MAUDE trend, risk score.
Open-source MCP server exposing Agent402.Tools' catalog — 500+ strong: 400+ self-hostable tools + 100 multi-tool skill packs (security-audit, trend-analysis, structured-scrape, decode-blob, forecasting-bake-off) for AI agents — browser, web search & answe
Zero-dependency MCP server that gives AI agents a self-updating project memory in AGENTS.md. Returns merge instructions instead of mutating state, so every change is a reviewable diff.
MCP Apps UI resources and server helpers for n8n
MCP server providing comprehensive access to BookStack knowledge management system
MCP server for tracking achievements with STAR methodology