2026-01-25 01:31:03 -06:00
|
|
|
{
|
2026-01-27 00:15:17 -06:00
|
|
|
"name": "vestige-mcp-server",
|
feat: Vestige v1.5.0 — Cognitive Engine, memory dreaming, graph exploration, predictive retrieval
28-module CognitiveEngine with full neuroscience pipeline on every tool call.
FSRS-6 now fully automatic: periodic consolidation (6h timer + inline every
100 tool calls), real retrievability formula, episodic-to-semantic auto-merge,
cross-memory reinforcement, Park et al. triple retrieval scoring, ACT-R
base-level activation, personalized w20 optimization.
New tools (19 → 23):
- dream: memory consolidation via replay, discovers hidden connections
- explore_connections: graph traversal (chain, associations, bridges)
- predict: proactive retrieval based on context and activity patterns
- restore: memory restore from JSON backups
All existing tools upgraded with cognitive pre/post processing pipelines.
33 files changed, ~4,100 lines added.
2026-02-18 23:34:15 -06:00
|
|
|
"version": "1.5.0",
|
2026-01-25 01:31:03 -06:00
|
|
|
"description": "Vestige MCP Server - AI Memory System for Claude and other assistants",
|
|
|
|
|
"bin": {
|
2026-01-26 23:50:40 -06:00
|
|
|
"vestige-mcp": "bin/vestige-mcp.js",
|
|
|
|
|
"vestige": "bin/vestige.js"
|
2026-01-25 01:31:03 -06:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"postinstall": "node scripts/postinstall.js"
|
|
|
|
|
},
|
2026-01-26 23:50:40 -06:00
|
|
|
"keywords": [
|
|
|
|
|
"mcp",
|
|
|
|
|
"claude",
|
|
|
|
|
"ai",
|
|
|
|
|
"memory",
|
|
|
|
|
"vestige"
|
|
|
|
|
],
|
2026-01-25 01:31:03 -06:00
|
|
|
"author": "Sam Valladares",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2026-01-26 23:50:40 -06:00
|
|
|
"url": "git+https://github.com/samvallad33/vestige.git"
|
2026-01-25 01:31:03 -06:00
|
|
|
},
|
|
|
|
|
"engines": {
|
|
|
|
|
"node": ">=18"
|
|
|
|
|
},
|
2026-01-26 23:50:40 -06:00
|
|
|
"os": [
|
|
|
|
|
"darwin",
|
|
|
|
|
"linux",
|
|
|
|
|
"win32"
|
|
|
|
|
],
|
|
|
|
|
"cpu": [
|
|
|
|
|
"x64",
|
|
|
|
|
"arm64"
|
|
|
|
|
]
|
2026-01-25 01:31:03 -06:00
|
|
|
}
|