# Memory Vault (oci · ghcr.io/mihaibuilds/memory-vault-mcp:1.2.1)

Local-first AI memory layer with hybrid search. Postgres + pgvector. Self-hosted, MIT.

- Trust score: 39/100 (low)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-22

## Components

- oci · `ghcr.io/mihaibuilds/memory-vault-mcp:1.2.1`: 39/100 (this document), [markdown](https://verifymcp.io/servers/mihaibuilds-memory-vault/ghcr-io-mihaibuilds-memory-vault-mcp-1-2-1.md), [page](https://verifymcp.io/servers/mihaibuilds-memory-vault/ghcr-io-mihaibuilds-memory-vault-mcp-1-2-1)

## Channel facts

- Registry: `oci`
- Package: `ghcr.io/mihaibuilds/memory-vault-mcp:1.2.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-22.

- **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**: 48/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 3 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 (good).
  - Tool/resource definitions use about 570 tokens (~81/item across 7 items; 5 tools + 2 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**: 71/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.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a current MCP spec version (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 Memory Vault MCP server?

Memory Vault runs locally as a container image, launched with docker run --rm -i ghcr.io/mihaibuilds/memory-vault-mcp:1.2.1. 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 mihaibuilds-memory-vault -- docker run --rm -i ghcr.io/mihaibuilds/memory-vault-mcp:1.2.1
```

### Cursor

```json
{
  "mcpServers": {
    "mihaibuilds-memory-vault": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/mihaibuilds/memory-vault-mcp:1.2.1"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "mihaibuilds-memory-vault": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/mihaibuilds/memory-vault-mcp:1.2.1"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add mihaibuilds-memory-vault -- docker run --rm -i ghcr.io/mihaibuilds/memory-vault-mcp:1.2.1
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "mihaibuilds-memory-vault": {
      "type": "local",
      "command": [
        "docker",
        "run",
        "--rm",
        "-i",
        "ghcr.io/mihaibuilds/memory-vault-mcp:1.2.1"
      ],
      "enabled": true
    }
  }
}
```

### Hermes

```yaml
mcp_servers:
  mihaibuilds-memory-vault:
    command: "docker"
    args: ["run", "--rm", "-i", "ghcr.io/mihaibuilds/memory-vault-mcp:1.2.1"]
```

### Netclaw

```json
{
  "McpServers": {
    "mihaibuilds-memory-vault": {
      "Transport": "stdio",
      "Command": "docker",
      "Arguments": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/mihaibuilds/memory-vault-mcp:1.2.1"
      ]
    }
  }
}
```

### Other

```json
{
  "mcpServers": {
    "mihaibuilds-memory-vault": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/mihaibuilds/memory-vault-mcp:1.2.1"
      ]
    }
  }
}
```

## 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-18 (score 39)

First indexed and scored.

## MCP tools (5)

### `recall` (~193 tokens)

Search your memories for information relevant to a query.

Returns chunks ranked by relevance using hybrid search (vector + full-text + RRF).
Uses query enrichment (keyword extraction + variation) for better recall.
Results are budgeted to fit within max_tokens to avoid flooding context.

Args:
    query: The search query — a question, topic, or keyword phrase.
    spaces: Filter to specific memory spaces (e.g. ["default", "projects"]).
            If omitted, searches all spaces.
    since: Only return memories after this date (ISO format, e.g. "2025-01-01").
    limit: Maximum number of results (default 10, max 50).
    max_tokens: Token budget for results (default 2000).

Input parameters:

- `limit` (integer)
- `max_tokens` (integer)
- `query` (string, required)
- `since`
- `spaces`

Output parameters:

- `result` (string)

### `remember` (~128 tokens)

Store a new memory in the system.

The text is embedded and stored as a searchable chunk.
Use this to save important information, decisions, or knowledge.

Args:
    text: The text content to remember.
    space: Which memory space to store it in (default "default").
    source: Where this memory comes from (default "mcp").
    speaker: Who said/wrote this — "human" or "assistant" (default "human").

Input parameters:

- `source` (string)
- `space` (string)
- `speaker` (string)
- `text` (string, required)

Output parameters:

- `result` (string)

### `forget` (~66 tokens)

Soft-delete a memory chunk by ID.

The chunk is removed from search results but stays in the database
for potential recovery. Sets importance to 0 and marks it in metadata.

Args:
    chunk_id: The UUID of the chunk to forget.

Input parameters:

- `chunk_id` (string, required)

Output parameters:

- `result` (string)

### `move_memory` (~120 tokens)

Move a stored memory into a different space.

The memory keeps its content and embedding; only the space it belongs to
changes. Its knowledge-graph entries are rebuilt in the target space so
the graph and search agree about where it lives.

The target space must already exist — use the dashboard or the API to
create one first.

Args:
    chunk_id: The UUID of the chunk to move.
    target_space: Name of the space to move it into.

Input parameters:

- `chunk_id` (string, required)
- `target_space` (string, required)

Output parameters:

- `result` (string)

### `memory_status` (~32 tokens)

Get the current status of the memory system.

Returns database health, chunk counts per space, and embedding model info.

Output parameters:

- `result` (string)

## Diagnostics

Captured diagnostic sections: Provenance. The full working is on the page: https://verifymcp.io/servers/mihaibuilds-memory-vault/ghcr-io-mihaibuilds-memory-vault-mcp-1-2-1#diagnostics

## Score history

- 2026-08-22: 39
- 2026-08-21: 39
- 2026-08-20: 39
- 2026-08-19: 39
- 2026-08-18: 39

## Common questions

### What is the Memory Vault MCP server?

Memory Vault is an MCP server listed in the public MCP registry as io.github.MihaiBuilds/memory-vault. Local-first AI memory layer with hybrid search. Postgres + pgvector. Self-hosted, MIT. This page covers its container image (ghcr.io/mihaibuilds/memory-vault-mcp:1.2.1).

### Is the Memory Vault MCP server safe to use?

Memory Vault scores 39 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 Memory Vault MCP server expose?

Memory Vault exposes 5 tools: recall, remember, forget, move_memory, memory_status. Their descriptions and schemas cost roughly 539 tokens of context every time the server is loaded.

### Is the Memory Vault MCP server still maintained?

Memory Vault is still listed as active in the MCP registry. We last reached this channel on 22 August 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

### What licence is the Memory Vault MCP server under?

Memory Vault declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.

## Links

- Repository: https://github.com/MihaiBuilds/memory-vault
- Website: https://mihaibuilds.com/
- Changelog RSS feed: https://verifymcp.io/servers/mihaibuilds-memory-vault/ghcr-io-mihaibuilds-memory-vault-mcp-1-2-1.xml
- Changelog JSON feed: https://verifymcp.io/servers/mihaibuilds-memory-vault/ghcr-io-mihaibuilds-memory-vault-mcp-1-2-1.json
- HTML version of this page: https://verifymcp.io/servers/mihaibuilds-memory-vault/ghcr-io-mihaibuilds-memory-vault-mcp-1-2-1
