Memory V2 MCP Server

Most AI memory systems are just databases with a search API. memory-v2 is a **cognitive architecture** -- it models how human memory actually works.

Remote serverstreamable-httpPython

What is the Memory V2 MCP server?

Most knowledge and memory work still happens through a UI a human drives. Memory V2 MCP server moves it into the conversation instead. Most AI memory systems are just databases with a search API. memory-v2 is a cognitive architecture -- it models how human memory actually works.

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

The tools it exposes

The server publishes 2 tools. What each one is for:

  • Noise — Activation includes a stochastic noise term drawn from the logistic distribution:
  • Schema — Entities are normalized to lowercase. Edges carry weight (incremented on repeated observation), temporal metadata (valid_from, valid_until)

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

This sits in the knowledge and memory group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Memory V2's toolset — Noise, Schema — is a fair guide to whether it matches your workflow. It is maintained by haustorium12; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
NoiseActivation includes a stochastic noise term drawn from the logistic distribution:
SchemaEntities are normalized to lowercase. Edges carry weight (incremented on repeated observation), temporal metadata (valid_from, valid_until), confidence scores, and source file provenance.

How to install the Memory V2 MCP server

```json
{
  "mcpServers": {
    "memory": {
      "command": "memory-v2-server",
      "args": ["--db", "~/memory.db"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Memory V2 to Noise.
  • Use Memory V2 to Schema.

Frequently asked questions

It connects Memory V2 to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (Noise, Schema) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Memory V2 directly.