Labsco
MCP SERVER · OFFICIAL PROJECT

Keep what the model learns about you in a local knowledge graph, so the next chat starts where the last one ended.

Agent MemoryVerified
Summary
Memory with a shape — entities, relations and observations — rather than a growing pile of notes.

Because facts are attached to named entities and joined by typed relations, a later question can be answered by walking the graph instead of re-reading everything. The deletes are the part people underestimate: an observation can be retracted on its own, so a fact that stops being true does not have to live forever next to the ones that still are.

What it is

Persistent memory stored as a local knowledge graph. Entities carry a name, a type and a list of observations; relations connect them in active voice.

What you get
  • Entities created in batches, each with a type and its own observations
  • Relations between entities, stored directionally and in active voice — works_at, for instance
  • Observations added to an entity that already exists, one fact per observation
  • Deletion at every level: whole entities and their relations, single relations, or individual observations
  • Search across entity names, types and observation text, returning the matches with their relations
  • Named nodes opened directly, with the relations that run between them
  • The whole graph read back at once, also exposed as a readable resource at memory://knowledge-graph that updates as tools change it
Requirements

No account and no key — storage is a JSONL file on your own disk. Published on npm as @modelcontextprotocol/server-memory and run through npx, or from the mcp/memory Docker image with a volume mounted. MEMORY_FILE_PATH points it at a file of your choosing; without it, memory.jsonl in the server directory is used.

Setup effort

One command — npx -y @modelcontextprotocol/server-memory