# Lore Context (npm · @lore-context/server)

Governed AI-agent memory, Evidence Ledger traces, evals, and portable context tools.

- Trust score: 60/100 (medium)
- Change this week: +18
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@lore-context/server`: 60/100 (this document), [markdown](https://verifymcp.io/servers/lore-context-lore-context-mcp/lore-context-server.md), [page](https://verifymcp.io/servers/lore-context-lore-context-mcp/lore-context-server)
- oci · `ghcr.io/lore-context/lore-context-mcp:0.6.0-alpha.1`: 5/100, [markdown](https://verifymcp.io/servers/lore-context-lore-context-mcp/ghcr-io-lore-context-lore-context-mcp-0-6-0-alpha-1.md), [page](https://verifymcp.io/servers/lore-context-lore-context-mcp/ghcr-io-lore-context-lore-context-mcp-0-6-0-alpha-1)

## Channel facts

- Registry: `npm`
- Package: `@lore-context/server`
- Version: `0.6.0-alpha.1`
- 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-08-03.

- **Supply Chain Security**: 86/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (Apache-2.0).
  - Actively maintained (last published 91 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 49/100
  - AI-judged instruction clarity (fair).
  - Tool/resource definitions use about 574 tokens (~52/item across 11 items; 11 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 67/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 0% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add lore-context-lore-context-mcp -- npx -y @lore-context/server
```

### Codex

```bash
codex mcp add lore-context-lore-context-mcp -- npx -y @lore-context/server
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "lore-context-lore-context-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@lore-context/server"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add lore-context-lore-context-mcp --command npx --arg -y --arg @lore-context/server
```

### Hermes

```yaml
mcp_servers:
  lore-context-lore-context-mcp:
    command: "npx"
    args: ["-y", "@lore-context/server"]
```

### Other

```json
{
  "mcpServers": {
    "lore-context-lore-context-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@lore-context/server"
      ]
    }
  }
}
```

## 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-08-03 (score 60, −3)

No change was recorded against any check on this day. Supply Chain Security went from 97 to 86. Other categories moved too: Stability & Change Management rose 4.

### 2026-08-02 (score 63, +58)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [functional improvement] Schema quality: unverified → fair
- [functional improvement] License: unverified → pass
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Stability: unverified → 0.23
- [functional] Licence: Apache-2.0

### 2026-07-31 (score 5, −37)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 42, +18)

- [functional improvement] Tool coverage: unverified → 100

### 2026-07-28 (score 24, −18)

- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

### 2026-07-27 (score 42)

First indexed and scored.

## MCP tools (11)

### `context_query` (~85 tokens)

Get agent-ready context from memory, web search, repo evidence and tool traces.

Input parameters:

- `freshness` (string)
- `include_sources` (boolean)
- `mode` (string)
- `project_id` (string)
- `query` (string, required)
- `sources` (object)
- `token_budget` (number)
- `writeback_policy` (string)

### `memory_write` (~51 tokens)

Save a user-approved or project-relevant memory with audit logging.

Input parameters:

- `content` (string, required)
- `memory_type` (string)
- `project_id` (string)
- `scope` (string, required)

### `memory_search` (~37 tokens)

Search visible Lore memories directly.

Input parameters:

- `project_id` (string)
- `query` (string, required)
- `top_k` (number)

### `memory_forget` (~54 tokens)

Forget memories by explicit selector. Requires a reason and defaults to soft delete.

Input parameters:

- `hard_delete` (boolean)
- `memory_ids` (array)
- `query` (string)
- `reason` (string, required)

### `memory_list` (~60 tokens)

List visible memories with pagination and filters.

Input parameters:

- `limit` (number)
- `memory_type` (string)
- `project_id` (string)
- `q` (string)
- `scope` (string)
- `status` (string)

### `memory_get` (~24 tokens)

Read one visible Lore memory by id.

Input parameters:

- `memory_id` (string, required)

### `memory_update` (~75 tokens)

Edit an existing memory. Risky content returns to the governance review queue.

Input parameters:

- `confidence` (number)
- `content` (string)
- `memory_id` (string, required)
- `memory_type` (string)
- `project_id` (string)
- `reason` (string, required)
- `scope` (string)

### `memory_supersede` (~77 tokens)

Create a new version of a memory and mark the previous one superseded.

Input parameters:

- `confidence` (number)
- `content` (string, required)
- `memory_id` (string, required)
- `memory_type` (string)
- `project_id` (string)
- `reason` (string, required)
- `scope` (string)

### `memory_export` (~32 tokens)

Export visible memories as Lore JSON or Markdown.

Input parameters:

- `format` (string)
- `project_id` (string)

### `eval_run` (~31 tokens)

Run retrieval evaluation over uploaded sessions and questions.

Input parameters:

- `dataset` (object, required)
- `provider` (string)

### `trace_get` (~25 tokens)

Read a context or memory trace by id.

Input parameters:

- `trace_id` (string, required)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/lore-context-lore-context-mcp/lore-context-server#diagnostics

## Score history

- 2026-08-03: 60
- 2026-08-02: 63
- 2026-08-01: 5
- 2026-07-31: 5
- 2026-07-30: 42
- 2026-07-28: 24
- 2026-07-27: 42

## Links

- npm package: https://www.npmjs.com/package/@lore-context/server
- Socket report: https://socket.dev/npm/package/@lore-context/server
- Repository: https://github.com/Lore-Context/lore-context
- Website: https://lorecontext.com/
- Changelog RSS feed: https://verifymcp.io/servers/lore-context-lore-context-mcp/lore-context-server/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/lore-context-lore-context-mcp/lore-context-server/changelog.json
- HTML version of this page: https://verifymcp.io/servers/lore-context-lore-context-mcp/lore-context-server
