🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

vestige-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vestige-mcp-server

Vestige MCP Server — local cognitive memory for MCP-compatible AI agents

latest
Source
npmnpm
Version
2.3.0
Version published
Weekly downloads
273
139.47%
Maintainers
1
Weekly downloads
 
Created
Source

vestige-mcp-server

Vestige MCP Server - A synthetic hippocampus for AI assistants.

Built on 130 years of cognitive science research, Vestige provides biologically-inspired memory that decays, strengthens, and consolidates like the human mind.

Installation

npm install -g vestige-mcp-server

This automatically downloads the correct binary for your platform (macOS, Linux, Windows) from GitHub releases.

Already installed? Update without copying release URLs:

vestige update

This refreshes the binaries only. Optional Claude Code Cognitive Sandwich companion files are refreshed with vestige update --sandwich-companion or vestige sandwich install.

Vestige Pro — your memory on every machine

The entire cognitive engine is free forever, local, and never metered. Vestige Pro is for when that memory needs to follow you:

  • End-to-end encrypted continuity across every machine you work on: your memory graph plus your accountability history (Black Box traces, receipts, memory PRs).
  • Zero-knowledge by construction: your passphrase never leaves your machine. The server only ever stores ciphertext. The client refuses to sync without encryption.
  • $19/month. No annual lock-in, no lifetime gimmicks.
npm update -g vestige-mcp-server   # get the Pro-capable client (v2.3.0+)
vestige sync --cloud               # walks you through the rest

Subscribe: github.com/samvallad33/vestige#vestige-pro

One passphrase, chosen by you, for every device. Vestige never receives it. A lost passphrase means the encrypted data is unrecoverable — that is the point.

What gets installed

CommandDescription
vestige-mcpMCP server for local agent memory
vestigeCLI for stats, health checks, and maintenance
vestige-restoreRestore helper for backup recovery

Verify installation

vestige health

Usage with MCP Clients

Vestige works with any client that can register a stdio MCP server.

Claude Code

claude mcp add vestige vestige-mcp -s user

Codex

codex mcp add vestige -- vestige-mcp

Then restart your MCP client.

OpenCode

Add to ~/.config/opencode/opencode.json or a project-local opencode.json:

{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "vestige": {
      "type": "local",
      "command": ["vestige-mcp"],
      "enabled": true,
      "timeout": 10000
    }
  }
}

Prefer the installed vestige-mcp command for OpenCode. If you run Vestige directly through npx, use a longer first-run timeout because npm may need to download the package before OpenCode can connect:

{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "vestige": {
      "type": "local",
      "command": ["npx", "-y", "-p", "vestige-mcp-server@latest", "vestige-mcp"],
      "enabled": true,
      "timeout": 60000
    }
  }
}

Usage with Claude Desktop

Add to your Claude Desktop configuration:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "vestige": {
      "command": "vestige-mcp"
    }
  }
}

CLI Commands

vestige stats          # Memory statistics
vestige stats --states # Cognitive state distribution
vestige health         # System health check
vestige consolidate    # Run memory maintenance cycle
vestige update         # Update binaries
vestige update --sandwich-companion # Also refresh optional Claude Code files
vestige sandwich install # Manage optional Claude Code hook files

Features

  • FSRS-6 Algorithm: State-of-the-art spaced repetition for optimal memory retention
  • Dual-Strength Memory: Bjork & Bjork (1992) - Storage + Retrieval strength model
  • Synaptic Tagging: Memories become important retroactively (Frey & Morris 1997)
  • Semantic Search: Local embeddings via nomic-embed-text-v1.5 (768 dimensions)
  • Local-First: All data stays on your machine - no cloud, no API costs

Storage & Memory

Vestige uses SQLite for storage. Your memories are stored on disk, not in RAM.

  • Database limit: 216TB (SQLite theoretical max)
  • RAM usage: ~64MB cache (configurable)
  • Typical usage: 1 million memories ≈ 1-2GB on disk

You'll never run out of space. A heavy user creating 100 memories/day would use ~1.5GB after 10 years.

Embeddings

On first use, Vestige downloads the nomic-embed-text-v1.5 model (~130MB). This is a one-time download and all subsequent operations are fully offline.

The model is stored in Vestige's OS cache directory, or you can set a global location:

export FASTEMBED_CACHE_PATH="$HOME/.fastembed_cache"

Environment Variables

VariableDescriptionDefault
RUST_LOGLog verbosity + per-module filterinfo
FASTEMBED_CACHE_PATHEmbeddings model cache overrideOS cache dir
VESTIGE_DATA_DIRStorage directory fallback; database lives at <dir>/vestige.dbOS data dir
VESTIGE_DASHBOARD_PORTDashboard port3927
VESTIGE_AUTH_TOKENBearer auth for dashboard + HTTP MCPauto-generated

Storage precedence is --data-dir <path>, then VESTIGE_DATA_DIR, then your OS's per-user data directory.

Troubleshooting

"Could not attach to MCP server vestige"

  • Verify binary exists: which vestige-mcp
  • Test directly: vestige-mcp (should wait for stdio input)
  • Check your MCP client's server logs.

"vestige: command not found"

Reinstall the package:

npm install -g vestige-mcp-server

Embeddings not downloading

The model downloads on first memory ingest or search operation. If your MCP client cannot connect to the MCP server, no memory operations happen and no model downloads.

Fix the MCP connection first, then the model will download automatically.

Supported Platforms

PlatformArchitecture
macOSARM64 (Apple Silicon), x86_64 (Intel)
Linuxx86_64
Windowsx86_64

License

AGPL-3.0-only

Keywords

mcp

FAQs

Package last updated on 26 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts