# WhiteMagic — governed local memory for agent continuity (oci · docker.io/lbailey94/whitemagic:9)

Local-first, governed memory and session continuity for AI coding agents. No cloud, no telemetry.

- Trust score: 37/100 (low)
- Change this week: +30
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-21

## Components

- npm · `whitemagic-mcp`: 40/100, [markdown](https://verifymcp.io/servers/lbailey94-whitemagic-mcp/whitemagic-mcp.md), [page](https://verifymcp.io/servers/lbailey94-whitemagic-mcp/whitemagic-mcp)
- oci · `docker.io/lbailey94/whitemagic:9`: 37/100 (this document), [markdown](https://verifymcp.io/servers/lbailey94-whitemagic-mcp/docker-io-lbailey94-whitemagic-9.md), [page](https://verifymcp.io/servers/lbailey94-whitemagic-mcp/docker-io-lbailey94-whitemagic-9)

## Channel facts

- Registry: `oci`
- Package: `docker.io/lbailey94/whitemagic:9`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-09-21.

- **Supply Chain Security**: 0/100
  - Malware scan not yet available for this package.
  - Known CVEs could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.
  - Install-script risk not yet assessed.
  - Dependency health could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.
- **Provenance & Transparency**: 35/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - License check failed: no license is declared.
  - Actively maintained (last published 1 days ago).
  - Publishes a security disclosure policy (SECURITY.md).
- **Schema Quality & AI Usability**: 85/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 2774 tokens (~69/item across 40 items; 9 tools + 31 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - We read all 9 captured tool definition(s), and no name or description among them implies an irreversible operation.
  - An AI judge read all 11 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 20/100
  - Spec-recency check failed: implements MCP spec 2024-11-05; the latest is 2026-07-28.

**Unverified: 2 categories.** Categories scored 0 because we could not verify them: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### How do I install the WhiteMagic — governed local memory for agent continuity MCP server?

WhiteMagic — governed local memory for agent continuity runs locally as a container image, launched with docker run --rm -i docker.io/lbailey94/whitemagic:9. Ready-made configuration for Claude, Cursor, VS Code, Codex and 3 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add lbailey94-whitemagic-mcp -- docker run --rm -i docker.io/lbailey94/whitemagic:9
```

### Cursor

```json
{
  "mcpServers": {
    "lbailey94-whitemagic-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "docker.io/lbailey94/whitemagic:9"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "lbailey94-whitemagic-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "docker.io/lbailey94/whitemagic:9"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add lbailey94-whitemagic-mcp -- docker run --rm -i docker.io/lbailey94/whitemagic:9
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "lbailey94-whitemagic-mcp": {
      "type": "local",
      "command": [
        "docker",
        "run",
        "--rm",
        "-i",
        "docker.io/lbailey94/whitemagic:9"
      ],
      "enabled": true
    }
  }
}
```

### Hermes

```yaml
mcp_servers:
  lbailey94-whitemagic-mcp:
    command: "docker"
    args: ["run", "--rm", "-i", "docker.io/lbailey94/whitemagic:9"]
```

### Netclaw

```json
{
  "McpServers": {
    "lbailey94-whitemagic-mcp": {
      "Transport": "stdio",
      "Command": "docker",
      "Arguments": [
        "run",
        "--rm",
        "-i",
        "docker.io/lbailey94/whitemagic:9"
      ]
    }
  }
}
```

### Other

```json
{
  "mcpServers": {
    "lbailey94-whitemagic-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "docker.io/lbailey94/whitemagic:9"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-09-17 (score 37, +30)

- [security improvement] Injection markers: unverified → pass
- [security] First check of Judged manipulation: pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional regression] MCP protocol: unverified → fail
- [functional improvement] Schema quality: unverified → 100
- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Schema quality: pass
- [functional] First check of Schema quality: excellent
- [functional] First check of Schema quality: fail
- [functional] First check of Tool coverage: 100
- [functional] First check of Destructive annotations: pass
- [functional] First check of Tool coverage: 100

### 2026-09-09 (score 7)

First indexed and scored.

## MCP tools (9)

### `wm` (~184 tokens)

WhiteMagic memory and continuity meta-tool

WhiteMagic meta-tool — memory and continuity kernel over the curated tool surface (60 tools): persistent memory, session continuity and recall, governance/audit, and local tool execution. Mode: writable. Scope: store /tmp/.local/share/whitemagic/lmdb. Invoke with thought=<natural language> (auto-routed), route=<exact tool id> (e.g. 'memory.search', 'session.continuity'), or args=<object> (passthrough). Say 'list tools' to enumerate the curated surface.

Input parameters:

- `args` (object): Arguments to pass through to the target tool.
- `route` (string): Explicit tool name for direct dispatch (e.g. 'memory.create', 'tools.list').
- `thought` (string): Natural language input describing what to do. Auto-routes to the best-matching tool via TF-IDF NLU classification.

### `memory.create` (~175 tokens)

Create memory

Store a new memory in the holographic memory core with 5D spatial coordinates and galaxy routing.

Input parameters:

- `content` (string, required): Memory content (text)
- `galaxy` (string): Target galaxy (default codex)
- `importance` (number): Optional importance 0.0-1.0 (write gate applies class ceilings/floors when the class is recognized)
- `source` (string): Authorship claim: user (user-dictated content, trust 1.0) | agent (default, trust 0.7) | other free-form class (trust 0.7)
- `tags` (array): Optional tags
- `title` (string): Optional human-readable title (envelope v2)
- `topic` (string): Optional topic label for subject-scoped retrieval (envelope v2)

### `memory.search` (~243 tokens)

Search memories

Search and recall memories across galaxies using hybrid semantic, BM25, and associative retrieval.

Input parameters:

- `cold_scan_limit` (integer): Maximum cold records to scan when include_cold is set (default 2048)
- `galaxy` (string): Galaxy filter (optional; default: search all memory galaxies, results labeled; "all" is accepted as an alias for the unfiltered default)
- `include_cold` (boolean): Opt-in unranked cold recovery (no thaw). Trust/importance floors apply; BM25 floors do not apply to unscored recovery. Search content is scrubbed navigation capped at 8192 characters; read by id/gala…
- `limit` (integer): Maximum results (default 10)
- `min_importance` (number): Minimum memory importance (0-1)
- `min_score` (number): Absolute BM25 score floor
- `min_score_ratio` (number): Relative floor: reject hits below this fraction of the top score
- `min_trust` (number): Minimum source_trust (0-1): drop results below this trust floor
- `query` (string, required): Full-text query

### `memory.read` (~43 tokens)

Read memory

Retrieve a specific memory by its ID or coordinate address.

Input parameters:

- `galaxy` (string): Galaxy containing the memory (default codex)
- `id` (string, required): Memory UUID

### `memory.list` (~87 tokens)

List memories

List memories with filters (galaxy, tags, limit, offset) for inventory and discovery.

Input parameters:

- `exclude_tags` (array): Drop memories carrying any of these tags
- `galaxy` (string): Galaxy to list (default codex)
- `limit` (integer): Maximum entries (default 20)
- `offset` (integer): Skip this many matching entries before returning (default 0)

### `memory.hybrid_recall` (~248 tokens)

Hybrid recall

Fused recall across full-text, vector, graph, and coordinate lookup with recall_mode disclosure.

Input parameters:

- `cold_scan_limit` (integer): Maximum cold records to scan when include_cold is set (default 2048)
- `galaxy` (string): Galaxy filter (optional; default: search all memory galaxies, results labeled; "all" is accepted as an alias for the unfiltered default)
- `include_cold` (boolean): Opt-in unranked cold recovery (no thaw). Trust/importance floors apply; BM25 floors do not apply to unscored recovery. Search content is scrubbed navigation capped at 8192 characters; read by id/gala…
- `limit` (integer): Maximum results (default 10)
- `min_importance` (number): Minimum memory importance (0-1)
- `min_score` (number): Absolute BM25 score floor
- `min_score_ratio` (number): Relative floor: reject hits below this fraction of the top score
- `min_trust` (number): Minimum source_trust (0-1): drop results below this trust floor
- `query` (string, required): Full-text query

### `session.record` (~136 tokens)

Record a session turn

Record a session turn (decision, breakthrough, summary) so the next session can resume.

Input parameters:

- `content` (string, required): Turn content
- `importance` (number): 0-1 importance (default 0.5)
- `role` (string): user | ai (default user)
- `session_id` (string): Target session (default: most recent session)
- `supersedes` (string): Memory id of an earlier turn this record corrects/replaces (amend-with-supersede)
- `turn_type` (string): message, decision, breakthrough, question, answer, code_change, error, summary, context

### `session.continuity` (~102 tokens)

Recall session continuity

Recall where the previous session left off: recent turns, checkpoints, and open work.

Input parameters:

- `current_session_id` (string): Session to exclude (optional)
- `n` (integer): Number of prior turns (default 10)
- `since` (string): Time-range floor: epoch seconds, RFC 3339, or YYYY-MM-DD
- `until` (string): Time-range ceiling: epoch seconds, RFC 3339, or YYYY-MM-DD

### `session.start` (~44 tokens)

Start or resume a session

Start or resume an agent session for persistent continuity across tool invocations.

Input parameters:

- `title` (string): Session title
- `user` (string): User identifier (default 'default')

## Diagnostics

Captured diagnostic sections: Provenance. The full working is on the page: https://verifymcp.io/servers/lbailey94-whitemagic-mcp/docker-io-lbailey94-whitemagic-9#diagnostics

## Score history

- 2026-09-21: 37
- 2026-09-20: 37
- 2026-09-19: 37
- 2026-09-18: 37
- 2026-09-17: 37
- 2026-09-16: 7
- 2026-09-15: 7
- 2026-09-14: 7
- 2026-09-13: 7
- 2026-09-12: 7
- 2026-09-11: 7
- 2026-09-10: 7
- 2026-09-09: 7

## Common questions

### What is the WhiteMagic — governed local memory for agent continuity MCP server?

WhiteMagic — governed local memory for agent continuity is an MCP server listed in the public MCP registry as io.github.lbailey94/whitemagic-mcp. Local-first, governed memory and session continuity for AI coding agents. No cloud, no telemetry. This page covers its container image (docker.io/lbailey94/whitemagic:9).

### Is the WhiteMagic — governed local memory for agent continuity MCP server safe to use?

WhiteMagic — governed local memory for agent continuity scores 37 out of 100 on VerifyMCP. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the WhiteMagic — governed local memory for agent continuity MCP server expose?

WhiteMagic — governed local memory for agent continuity exposes 9 tools: wm, memory.create, memory.search, memory.read, memory.list, and 4 more. Their descriptions and schemas cost roughly 1,262 tokens of context every time the server is loaded.

### Is the WhiteMagic — governed local memory for agent continuity MCP server still maintained?

WhiteMagic — governed local memory for agent continuity is still listed as active in the MCP registry. We last reached this channel on 21 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

## Links

- Repository: https://github.com/lbailey94/whitemagic
- Website: https://whitemagic.dev/
- Changelog RSS feed: https://verifymcp.io/servers/lbailey94-whitemagic-mcp/docker-io-lbailey94-whitemagic-9.xml
- Changelog JSON feed: https://verifymcp.io/servers/lbailey94-whitemagic-mcp/docker-io-lbailey94-whitemagic-9.json
- HTML version of this page: https://verifymcp.io/servers/lbailey94-whitemagic-mcp/docker-io-lbailey94-whitemagic-9
