Mnema MCP Server

@felipesauer/mnema npm v0.13.0-alpha.0 Source verified

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

A tamper-evident, local-first audit trail for AI-agent work — an MCP server giving Claude Code, Cursor and other agents typed tools behind workflow gates, with every action recorded in a SHA-256 hash-chained log.

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

The deterministic scan raised no scored threat in the surface it inspected — the threat score stayed at 100. Capability observations and advisory notes are recorded but never lower it.

2. Client adoption risk — 100 − 6 = 94. 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 8

high Tool "eval_report" exposes command/code executionMTC-CAP-001

Tool "eval_report" appears to run shell commands or evaluate code (keyword "eval" in tool name). Arbitrary execution driven by model input is one of the most dangerous MCP capabilities; combined with any untrusted input it becomes RCE.

Fix: Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.

Location: tool eval_report

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

In the server's implementation (`dist/cli/commands/serve-command.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: rt { spawn } from 'node:child_process'; import { createDashboardServer, DEFAULT_HOST, DEFAULT_PORT, isLoopbackHost, } fr

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/serve-command.js

high Shell/command execution in server code (dist/services/anchor/git-signed-anchor-provider.js)MTC-SRC-002

In the server's implementation (`dist/services/anchor/git-signed-anchor-provider.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'; /** The registered name of the git-signed provider. */ export const GIT_SIGNED_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 dist/services/anchor/git-signed-anchor-provider.js

high Shell/command execution in server code (dist/services/domain-event-dispatcher.js)MTC-SRC-002

In the server's implementation (`dist/services/domain-event-dispatcher.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'; import { DomainEvent } from '../domain/enums/domain-event.js'; /** * Default ti

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/services/domain-event-dispatcher.js

high Shell/command execution in server code (dist/services/git-commit-service.js)MTC-SRC-002

In the server's implementation (`dist/services/git-commit-service.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'; import { existsSync } from 'node:fs'; /** The real git runner (spawns an actual

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/services/git-commit-service.js

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

In the server's implementation (`dist/services/github-pr-service.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'; export const defaultRunner = (command, args) => { const result = spawnSync(c

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/services/github-pr-service.js

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

In the server's implementation (`dist/services/memory-staleness.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 defaultGitRunner = (args, cwd) => { const result = spawnSync('git', [.

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/services/memory-staleness.js

low Mutating tool "eval_report" declares no destructiveHintMTC-CAP-005

Tool "eval_report" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.

Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.

Location: tool eval_report

Tools 95

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

  • eval_reportruns code / shell
  • agent_plan_createno sensitive capability
  • agent_plan_update_stateno sensitive capability
  • agent_plans_listno sensitive capability
  • agent_run_endno sensitive capability
  • agent_run_resumeno sensitive capability
  • agent_run_showno sensitive capability
  • agent_run_startno sensitive capability
  • audit_queryno sensitive capability
  • audit_verifyno sensitive capability
Show 85 more tools ↓
  • command_showno sensitive capability
  • commands_listno sensitive capability
  • context_bootstrapno sensitive capability
  • decision_acceptno sensitive capability
  • decision_promote_from_noteno sensitive capability
  • decision_promote_from_observationno sensitive capability
  • decision_recordno sensitive capability
  • decision_rejectno sensitive capability
  • decision_showno sensitive capability
  • decision_supersedeno sensitive capability
  • decisions_impactingno sensitive capability
  • decisions_listno sensitive capability
  • drift_commitsno sensitive capability
  • epic_add_taskno sensitive capability
  • epic_closeno sensitive capability
  • epic_coverageno sensitive capability
  • epic_createno sensitive capability
  • epic_deleteno sensitive capability
  • epic_lintno sensitive capability
  • epic_removeno sensitive capability
  • epic_showno sensitive capability
  • epic_updateno sensitive capability
  • epics_listno sensitive capability
  • evolve_reportno sensitive capability
  • file_collisionsno sensitive capability
  • focusno sensitive capability
  • graph_dependenciesno sensitive capability
  • history_getno sensitive capability
  • labels_listno sensitive capability
  • memories_listno sensitive capability
  • memory_archiveno sensitive capability
  • memory_contradictno sensitive capability
  • memory_recordno sensitive capability
  • memory_showno sensitive capability
  • memory_supersedeno sensitive capability
  • metrics_flowno sensitive capability
  • note_addno sensitive capability
  • observation_archiveno sensitive capability
  • observation_recordno sensitive capability
  • observations_listno sensitive capability
  • pr_statusno sensitive capability
  • provenanceno sensitive capability
  • run_diffno sensitive capability
  • searchno sensitive capability
  • skill_diffno sensitive capability
  • skill_recordno sensitive capability
  • skill_review_proposalsno sensitive capability
  • skill_showno sensitive capability
  • skill_suggestno sensitive capability
  • skill_supersedeno sensitive capability
  • skill_useno sensitive capability
  • skills_listno sensitive capability
  • snapshot_generateno sensitive capability
  • sprint_add_taskno sensitive capability
  • sprint_add_tasksno sensitive capability
  • sprint_cancelno sensitive capability
  • sprint_closeno sensitive capability
  • sprint_coverageno sensitive capability
  • sprint_createno sensitive capability
  • sprint_lintno sensitive capability
  • sprint_metricno sensitive capability
  • sprint_removeno sensitive capability
  • sprint_showno sensitive capability
  • sprint_startno sensitive capability
  • sprints_listno sensitive capability
  • task_actionsno sensitive capability
  • task_assignno sensitive capability
  • task_attach_evidenceno sensitive capability
  • task_claimno sensitive capability
  • task_createno sensitive capability
  • task_create_manyno sensitive capability
  • task_dependenciesno sensitive capability
  • task_depends_manyno sensitive capability
  • task_depends_onno sensitive capability
  • task_evidenceno sensitive capability
  • task_labelsno sensitive capability
  • task_release_claimno sensitive capability
  • task_set_labelsno sensitive capability
  • task_showno sensitive capability
  • task_updateno sensitive capability
  • tasks_listno sensitive capability
  • tasks_queryno sensitive capability
  • tasks_readyno sensitive capability
  • wikilink_referencesno sensitive capability
  • wikilinks_lintno 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
v0.13.0-alpha.0 latest A 94/100 8 1.13.0 2026-09-09

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

Use the free API → How scoring works

More in Developer Tools