Mnemory MCP Server

Give your AI agents persistent memory. mnemory is a self-hosted [MCP](https://modelcontextprotocol.io/) server that adds personalization and

Remote serverstreamable-http

What is the Mnemory MCP server?

Mnemory MCP server exists for a simple reason — assistants are far more useful when they can act on Mnemory directly instead of describing what you should do. Give your AI agents persistent memory. mnemory is a self-hosted MCP server that adds personalization and long-term memory to any AI assistant — Claude Code, ChatGPT, Open WebUI, Cursor, or any.

What you get

  • Zero config — — uvx mnemory, connect your MCP client, done. Works out of the box with any OpenAI-compatible API
  • Intelligent extraction — — A single LLM call extracts facts, classifies metadata, and deduplicates against existing memories
  • Contradiction resolution — — "I drive a Skoda" + later "I bought a Tesla" = automatic update, not a duplicate
  • Two-tier memory — — Fast searchable summaries in a vector store + detailed artifact storage (reports, code, research) retrieved on demand
  • AI-powered search — — Multi-query semantic search with temporal awareness. Ask "What did I decide last week about the database?" and it finds the right memories
  • Memory health checks — — Built-in three-phase consistency checker (fsck) detects duplicates, contradictions, quality issues, and prompt injection. Run manually or on a schedule with auto-fix

Setting it up

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

What the assistant can call

Once Mnemory is connected, these are the calls the assistant has available:

  • Two — tier memory** — Fast searchable summaries in a vector store + detailed artifact storage (reports, code, research) retrieved on demand
  • Built — in management UI** — Dashboard, semantic search, memory browser with full CRUD, relationship graph visualization, and health check interface. No
  • Client — MCP
  • ChatGPT — Yes (MCP connector)
  • OpenCode — Yes
  • OpenClaw — Yes
  • Cursor — Yes
  • Windsurf — Yes
  • Cline — Yes
  • Continue.dev — Yes
  • System — single_hop
  • mnemory63.1

Configuration and credentials

You will need one environment variable: OPENAI_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Before you rely on it

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Mnemory.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the mnemory mcp server does with a few real requests.

Choosing this one

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. Mnemory's toolset — Two, Built, Client and 11 more — is a fair guide to whether it matches your workflow. It is maintained by fpytloun; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Mnemory's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
Twotier memory** — Fast searchable summaries in a vector store + detailed artifact storage (reports, code, research) retrieved on demand.
Builtin management UI** — Dashboard, semantic search, memory browser with full CRUD, relationship graph visualization, and health check interface. No extra tools needed.
ClientMCP
ChatGPTYes (MCP connector)
OpenCodeYes
OpenClawYes
CursorYes
WindsurfYes
ClineYes
Continue.devYes
Systemsingle_hop
mnemory**63.1**
Memobase70.9
Mem0-Graph65.7

How to install the Mnemory MCP server

{
  "mcpServers": {
    "mnemory": {
      "command": "uvx",
      "args": ["mnemory"],
      "env": {
        "OPENAI_API_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
OPENAI_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Mnemory to Two.
  • Use Mnemory to Built.
  • Use Mnemory to Client.

Frequently asked questions

It connects Mnemory to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Two, Built, Client, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Mnemory directly.